summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Entities/SPlayer.cs
blob: ae4e94725f9e049a4c8e37806722c1df9631f477 (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
34
35
36
37
using StardewModdingAPI.Inheritance;
using StardewValley;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

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;
            }
        }
    }
}