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

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