namespace StardewModdingAPI.Toolkit.Utilities
{
    /// <summary>The game's platform version.</summary>
    public enum Platform
    {
        /// <summary>The Android version of the game.</summary>
        Android,

        /// <summary>The Linux version of the game.</summary>
        Linux,

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

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