namespace StardewModdingAPI.Toolkit.Utilities
{
/// The game's platform version.
public enum Platform
{
/// The Android version of the game.
Android,
/// The Linux version of the game.
Linux,
/// The Mac version of the game.
Mac,
/// The Windows version of the game.
Windows
}
}