blob: 8013faa90a03b6d14800e89c8be6a4fcaca31188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#nullable disable
using StardewModdingAPI.Toolkit.Utilities;
namespace StardewModdingAPI
{
/// <summary>The game's platform version.</summary>
public enum GamePlatform
{
/// <summary>The Android version of the game.</summary>
Android = Platform.Android,
/// <summary>The Linux version of the game.</summary>
Linux = Platform.Linux,
/// <summary>The macOS version of the game.</summary>
Mac = Platform.Mac,
/// <summary>The Windows version of the game.</summary>
Windows = Platform.Windows
}
}
|