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