summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer/Enums/Platform.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Installer/Enums/Platform.cs')
-rw-r--r--src/SMAPI.Installer/Enums/Platform.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/SMAPI.Installer/Enums/Platform.cs b/src/SMAPI.Installer/Enums/Platform.cs
new file mode 100644
index 00000000..9bcaa3c3
--- /dev/null
+++ b/src/SMAPI.Installer/Enums/Platform.cs
@@ -0,0 +1,12 @@
+namespace StardewModdingApi.Installer.Enums
+{
+ /// <summary>The game's platform version.</summary>
+ internal enum Platform
+ {
+ /// <summary>The Linux/Mac version of the game.</summary>
+ Mono,
+
+ /// <summary>The Windows version of the game.</summary>
+ Windows
+ }
+} \ No newline at end of file