diff options
Diffstat (limited to 'src/StardewModdingAPI/Events/EventArgsGameLocationsChanged.cs')
-rw-r--r-- | src/StardewModdingAPI/Events/EventArgsGameLocationsChanged.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/StardewModdingAPI/Events/EventArgsGameLocationsChanged.cs b/src/StardewModdingAPI/Events/EventArgsGameLocationsChanged.cs deleted file mode 100644 index fb8c821e..00000000 --- a/src/StardewModdingAPI/Events/EventArgsGameLocationsChanged.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using StardewValley; - -namespace StardewModdingAPI.Events -{ - /// <summary>Event arguments for a <see cref="LocationEvents.LocationsChanged"/> event.</summary> - public class EventArgsGameLocationsChanged : EventArgs - { - /********* - ** Accessors - *********/ - /// <summary>The current list of game locations.</summary> - public List<GameLocation> NewLocations { get; } - - - /********* - ** Public methods - *********/ - /// <summary>Construct an instance.</summary> - /// <param name="newLocations">The current list of game locations.</param> - public EventArgsGameLocationsChanged(List<GameLocation> newLocations) - { - this.NewLocations = newLocations; - } - } -} |