diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 19:12:48 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 19:12:48 -0400 |
commit | 489cacca5ef79a77ca04d12395ff1ec5c7a05c5f (patch) | |
tree | 795d283135ba18c14ee37201adfc2c8c40651591 /src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs | |
parent | bcaf5b21c1e64ddca29b27d2b96652a3d925d8ff (diff) | |
download | SMAPI-489cacca5ef79a77ca04d12395ff1ec5c7a05c5f.tar.gz SMAPI-489cacca5ef79a77ca04d12395ff1ec5c7a05c5f.tar.bz2 SMAPI-489cacca5ef79a77ca04d12395ff1ec5c7a05c5f.zip |
minor cleanup
Diffstat (limited to 'src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs')
-rw-r--r-- | src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs b/src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs index a589e29d..57298164 100644 --- a/src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs +++ b/src/StardewModdingAPI/Events/EventArgsMouseStateChanged.cs @@ -11,16 +11,16 @@ namespace StardewModdingAPI.Events ** Accessors *********/ /// <summary>The previous mouse state.</summary> - public MouseState PriorState { get; private set; } + public MouseState PriorState { get; } /// <summary>The current mouse state.</summary> - public MouseState NewState { get; private set; } + public MouseState NewState { get; } /// <summary>The previous mouse position on the screen adjusted for the zoom level.</summary> - public Point PriorPosition { get; private set; } + public Point PriorPosition { get; } /// <summary>The current mouse position on the screen adjusted for the zoom level.</summary> - public Point NewPosition { get; private set; } + public Point NewPosition { get; } /********* |