summaryrefslogtreecommitdiff
path: root/src/SMAPI/GamePlatform.cs
blob: 174239e0de78d058e2e2c66fa20e83935d4d5551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using StardewModdingAPI.Toolkit.Utilities;

namespace StardewModdingAPI
{
    /// <summary>The game's platform version.</summary>
    public enum GamePlatform
    {
        /// <summary>The Linux version of the game.</summary>
        Linux = Platform.Linux,

        /// <summary>The Mac version of the game.</summary>
        Mac = Platform.Mac,

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