blob: cce5ed8df24284734fc30993bef01d62758f06f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
}
}
|