summaryrefslogtreecommitdiff
path: root/src/SMAPI.Common/Platform.cs
blob: 08b4545ffe6d3882684ac89988af7cbc77d979dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Common
{
    /// <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
    }
}