summaryrefslogtreecommitdiff
path: root/src/SMAPI.Toolkit/Utilities/Platform.cs
blob: f780e812f1ebf60e9336b7276f39d8f98cdd0468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace StardewModdingAPI.Toolkit.Utilities
{
    /// <summary>The game's platform version.</summary>
    public enum Platform
    {
        /// <summary>The Android version of the game.</summary>
        Android,

        /// <summary>The Linux version of the game.</summary>
        Linux,

        /// <summary>The Mac version of the game.</summary>
        Mac,

        /// <summary>The Windows version of the game.</summary>
        Windows
    }
}