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