summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Platform.cs
blob: cab81e06bc31bbac7fbb0b3dd7694e5dd5554c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingAPI.Framework
{
    /// <summary>The game's platform version.</summary>
    internal enum Platform
    {
        /// <summary>The Linux/Mac version of the game.</summary>
        Mono,

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