summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModLoading/Platform.cs
blob: 45e881c4d99cb2d2bab820cc2b6504afb741bcbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingAPI.Framework.ModLoading
{
    /// <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
    }
}