summaryrefslogtreecommitdiff
path: root/src/SMAPI.Toolkit/Utilities/Platform.cs
blob: d64cbeb901d74f958b05d2261da7a2113aa496e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Toolkit.Utilities
{
    /// <summary>The game's platform version.</summary>
    public enum Platform
    {
        /// <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
    }
}