From 929dccb75a1405737975d76648e015a3e7c00177 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 7 Oct 2017 23:07:10 -0400 Subject: reorganise repo structure --- .../Events/EventArgsIntChanged.cs | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/StardewModdingAPI/Events/EventArgsIntChanged.cs (limited to 'src/StardewModdingAPI/Events/EventArgsIntChanged.cs') diff --git a/src/StardewModdingAPI/Events/EventArgsIntChanged.cs b/src/StardewModdingAPI/Events/EventArgsIntChanged.cs deleted file mode 100644 index 0c742d12..00000000 --- a/src/StardewModdingAPI/Events/EventArgsIntChanged.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System; - -namespace StardewModdingAPI.Events -{ - /// Event arguments for an integer field that changed value. - public class EventArgsIntChanged : EventArgs - { - /********* - ** Accessors - *********/ - /// The previous value. - public int PriorInt { get; } - - /// The current value. - public int NewInt { get; } - - /********* - ** Public methods - *********/ - /// Construct an instance. - /// The previous value. - /// The current value. - public EventArgsIntChanged(int priorInt, int newInt) - { - this.PriorInt = priorInt; - this.NewInt = newInt; - } - } -} -- cgit