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/Entities | |
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/Entities')
-rw-r--r-- | StardewModdingAPI/Entities/SCharacter.cs | 6 | ||||
-rw-r--r-- | StardewModdingAPI/Entities/SFarm.cs | 6 | ||||
-rw-r--r-- | StardewModdingAPI/Entities/SFarmAnimal.cs | 6 | ||||
-rw-r--r-- | StardewModdingAPI/Entities/SNpc.cs | 6 | ||||
-rw-r--r-- | StardewModdingAPI/Entities/SPlayer.cs | 33 |
5 files changed, 0 insertions, 57 deletions
diff --git a/StardewModdingAPI/Entities/SCharacter.cs b/StardewModdingAPI/Entities/SCharacter.cs deleted file mode 100644 index 2d941d55..00000000 --- a/StardewModdingAPI/Entities/SCharacter.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace StardewModdingAPI.Entities
-{
- internal class SCharacter
- {
- }
-}
\ No newline at end of file diff --git a/StardewModdingAPI/Entities/SFarm.cs b/StardewModdingAPI/Entities/SFarm.cs deleted file mode 100644 index c6c64681..00000000 --- a/StardewModdingAPI/Entities/SFarm.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace StardewModdingAPI.Entities
-{
- internal class SFarm
- {
- }
-}
\ No newline at end of file diff --git a/StardewModdingAPI/Entities/SFarmAnimal.cs b/StardewModdingAPI/Entities/SFarmAnimal.cs deleted file mode 100644 index fb8ee267..00000000 --- a/StardewModdingAPI/Entities/SFarmAnimal.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace StardewModdingAPI.Entities
-{
- internal class SFarmAnimal
- {
- }
-}
\ No newline at end of file diff --git a/StardewModdingAPI/Entities/SNpc.cs b/StardewModdingAPI/Entities/SNpc.cs deleted file mode 100644 index 727dcff7..00000000 --- a/StardewModdingAPI/Entities/SNpc.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace StardewModdingAPI.Entities
-{
- internal class SNpc
- {
- }
-}
\ No newline at end of file diff --git a/StardewModdingAPI/Entities/SPlayer.cs b/StardewModdingAPI/Entities/SPlayer.cs deleted file mode 100644 index d464cded..00000000 --- a/StardewModdingAPI/Entities/SPlayer.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System;
-using System.Collections.Generic;
-using StardewValley;
-
-namespace StardewModdingAPI.Entities
-{
- /// <summary>
- /// Static class for intergrating with the player
- /// </summary>
- public class SPlayer
- {
- /// <summary>
- /// Calls 'getAllFarmers' in Game1
- /// </summary>
- public static List<Farmer> AllFarmers => Game1.getAllFarmers();
-
- /// <summary>
- /// Do not use.
- /// </summary>
- [Obsolete("Use 'Player' instead.")]
- public static Farmer CurrentFarmer => Game1.player;
-
- /// <summary>
- /// Gets the current player from Game1
- /// </summary>
- public static Farmer Player => Game1.player;
-
- /// <summary>
- /// Gets the player's current location from Game1
- /// </summary>
- public static GameLocation CurrentFarmerLocation => Player.currentLocation;
- }
-}
\ No newline at end of file |