blob: b64595e4770fd3d016d7e9f94e885e5ab7a2085a (
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 Mac version of the game.</summary>
Mac = Platform.Mac,
/// <summary>The Windows version of the game.</summary>
Windows = Platform.Windows
}
}
|