summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-08-31 17:46:47 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 19:19:08 -0400
commit8cb190de080aad56372b1c63d8b4f977f3c81d01 (patch)
treec1ca96f20049102d58a6754f991a4b1c0142092a /src/SMAPI
parente02372bba9559d638ac2e63fad442975ee71c44b (diff)
downloadSMAPI-8cb190de080aad56372b1c63d8b4f977f3c81d01.tar.gz
SMAPI-8cb190de080aad56372b1c63d8b4f977f3c81d01.tar.bz2
SMAPI-8cb190de080aad56372b1c63d8b4f977f3c81d01.zip
add Android detection
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/GamePlatform.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/GamePlatform.cs b/src/SMAPI/GamePlatform.cs
index 174239e0..b64595e4 100644
--- a/src/SMAPI/GamePlatform.cs
+++ b/src/SMAPI/GamePlatform.cs
@@ -5,6 +5,9 @@ namespace StardewModdingAPI
/// <summary>The game's platform version.</summary>
public enum GamePlatform
{
+ /// <summary>The Android version of the game.</summary>
+ Android = Platform.Android,
+
/// <summary>The Linux version of the game.</summary>
Linux = Platform.Linux,