diff options
author | Gormogon <Gormogon@users.noreply.github.com> | 2016-05-29 18:23:01 -0400 |
---|---|---|
committer | Gormogon <Gormogon@users.noreply.github.com> | 2016-05-29 18:23:01 -0400 |
commit | 27dece2cf445147c5e2848f9ec26f38a101f50fc (patch) | |
tree | 2579d0979dd9f295972e5ba2a81f4177589f7395 /StardewModdingAPI/Events/Location.cs | |
parent | 85142935b63324f7c6131a8855acea0a2d534879 (diff) | |
download | SMAPI-27dece2cf445147c5e2848f9ec26f38a101f50fc.tar.gz SMAPI-27dece2cf445147c5e2848f9ec26f38a101f50fc.tar.bz2 SMAPI-27dece2cf445147c5e2848f9ec26f38a101f50fc.zip |
Attempt to migrate to new directory structure.
Diffstat (limited to 'StardewModdingAPI/Events/Location.cs')
-rw-r--r-- | StardewModdingAPI/Events/Location.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/StardewModdingAPI/Events/Location.cs b/StardewModdingAPI/Events/Location.cs deleted file mode 100644 index f951ab95..00000000 --- a/StardewModdingAPI/Events/Location.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System;
-using System.Collections.Generic;
-using Microsoft.Xna.Framework;
-using StardewValley;
-using Object = StardewValley.Object;
-
-namespace StardewModdingAPI.Events
-{
- public static class LocationEvents
- {
- public static event EventHandler<EventArgsGameLocationsChanged> LocationsChanged = delegate { };
- public static event EventHandler<EventArgsLocationObjectsChanged> LocationObjectsChanged = delegate { };
- public static event EventHandler<EventArgsCurrentLocationChanged> CurrentLocationChanged = delegate { };
-
- internal static void InvokeLocationsChanged(List<GameLocation> newLocations)
- {
- LocationsChanged.Invoke(null, new EventArgsGameLocationsChanged(newLocations));
- }
-
- internal static void InvokeCurrentLocationChanged(GameLocation priorLocation, GameLocation newLocation)
- {
- CurrentLocationChanged.Invoke(null, new EventArgsCurrentLocationChanged(priorLocation, newLocation));
- }
-
- internal static void InvokeOnNewLocationObject(SerializableDictionary<Vector2, Object> newObjects)
- {
- LocationObjectsChanged.Invoke(null, new EventArgsLocationObjectsChanged(newObjects));
- }
- }
-}
\ No newline at end of file |