diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 19:16:44 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 19:16:44 -0400 |
commit | a36426296a528fed9952e7eb6f504ee090c0179d (patch) | |
tree | 9ea134b1dc8673a43cfd112466603612799d4db5 /src/SMAPI.Toolkit/Utilities | |
parent | 7ca168269fc8cc76d900fba6c6d04d2b02287956 (diff) | |
parent | 98a56169e76432bd9efc43caddc59717278d758e (diff) | |
download | SMAPI-a36426296a528fed9952e7eb6f504ee090c0179d.tar.gz SMAPI-a36426296a528fed9952e7eb6f504ee090c0179d.tar.bz2 SMAPI-a36426296a528fed9952e7eb6f504ee090c0179d.zip |
Merge pull request #658 from danvolchek/log-parser-user-agent-detection
[SMAPI.Web] Detect the client's platform and check the right log parser input accordingly
Diffstat (limited to 'src/SMAPI.Toolkit/Utilities')
-rw-r--r-- | src/SMAPI.Toolkit/Utilities/Platform.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI.Toolkit/Utilities/Platform.cs b/src/SMAPI.Toolkit/Utilities/Platform.cs index d64cbeb9..f780e812 100644 --- a/src/SMAPI.Toolkit/Utilities/Platform.cs +++ b/src/SMAPI.Toolkit/Utilities/Platform.cs @@ -3,6 +3,9 @@ namespace StardewModdingAPI.Toolkit.Utilities /// <summary>The game's platform version.</summary> public enum Platform { + /// <summary>The Android version of the game.</summary> + Android, + /// <summary>The Linux version of the game.</summary> Linux, |