summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs
diff options
context:
space:
mode:
authorDan Volchek <volchek2@illinois.edu>2019-08-25 17:21:03 -0700
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 19:14:24 -0400
commitf04f7811536ba6e35c4ad6357fb6904826eda9dc (patch)
treefac7f183ecac6ed63f29e1c01186ffdf46d9af7c /src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs
parent00b067fead282bb30eb8ca67572f16bd6e1920b7 (diff)
downloadSMAPI-f04f7811536ba6e35c4ad6357fb6904826eda9dc.tar.gz
SMAPI-f04f7811536ba6e35c4ad6357fb6904826eda9dc.tar.bz2
SMAPI-f04f7811536ba6e35c4ad6357fb6904826eda9dc.zip
rename namespace to be more accurate
Diffstat (limited to 'src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs')
-rw-r--r--src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs b/src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs
new file mode 100644
index 00000000..2fe1d324
--- /dev/null
+++ b/src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs
@@ -0,0 +1,18 @@
+namespace StardewModdingAPI.Web.Framework.ClientPlatformDetection
+{
+ /// <summary>A software platform.</summary>
+ public enum Platform
+ {
+ /// <summary>The Android platform.</summary>
+ Android,
+
+ /// <summary>The Linux platform.</summary>
+ Linux,
+
+ /// <summary>The Mac platform.</summary>
+ Mac,
+
+ /// <summary>The Windows platform.</summary>
+ Windows
+ }
+}