12 lines
303 B
C#
12 lines
303 B
C#
|
namespace StardewModdingAPI.AssemblyRewriters
|
||
|
{
|
||
|
/// <summary>The game's platform version.</summary>
|
||
|
public enum Platform
|
||
|
{
|
||
|
/// <summary>The Linux/Mac version of the game.</summary>
|
||
|
Mono,
|
||
|
|
||
|
/// <summary>The Windows version of the game.</summary>
|
||
|
Windows
|
||
|
}
|
||
|
}
|