blob: 563d32507e0c25bcc15ddb89c0bc56423b760c0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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 macOS version of the game.</summary>
Mac,
/// <summary>The Windows version of the game.</summary>
Windows
}
}
|