From f04f7811536ba6e35c4ad6357fb6904826eda9dc Mon Sep 17 00:00:00 2001 From: Dan Volchek Date: Sun, 25 Aug 2019 17:21:03 -0700 Subject: rename namespace to be more accurate --- .../Framework/ClientPlatformDetection/Platform.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs (limited to 'src/SMAPI.Web/Framework/ClientPlatformDetection/Platform.cs') 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 +{ + /// A software platform. + public enum Platform + { + /// The Android platform. + Android, + + /// The Linux platform. + Linux, + + /// The Mac platform. + Mac, + + /// The Windows platform. + Windows + } +} -- cgit