blob: c74ba461cf31f01d9a726be587bf2d5cd29bb2e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
using System.Collections.Generic;
using StardewModdingAPI.Inheritance;
using StardewValley;
namespace StardewModdingAPI.Entities
{
public static class SPlayer
{
public static List<Farmer> AllFarmers
{
get
{
return SGame.getAllFarmers();
}
}
public static Farmer CurrentFarmer
{
get
{
return SGame.player;
}
}
public static GameLocation CurrentFarmerLocation
{
get
{
return SGame.player.currentLocation;
}
}
}
}
|