summaryrefslogtreecommitdiff
path: root/src/SMAPI.Common/Platform.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Common/Platform.cs')
-rw-r--r--src/SMAPI.Common/Platform.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/SMAPI.Common/Platform.cs b/src/SMAPI.Common/Platform.cs
new file mode 100644
index 00000000..08b4545f
--- /dev/null
+++ b/src/SMAPI.Common/Platform.cs
@@ -0,0 +1,15 @@
+namespace StardewModdingAPI.Common
+{
+ /// <summary>The game's platform version.</summary>
+ internal enum Platform
+ {
+ /// <summary>The Linux version of the game.</summary>
+ Linux,
+
+ /// <summary>The Mac version of the game.</summary>
+ Mac,
+
+ /// <summary>The Windows version of the game.</summary>
+ Windows
+ }
+}