From a2976ca5f6f6b993984dfee1bdb051b077f8a972 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 19 Sep 2019 17:44:48 -0400 Subject: [PATCH] Add GamePlatform Android --- src/SMAPI.Internal/Platform.cs | 2 +- src/SMAPI/GamePlatform.cs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/SMAPI.Internal/Platform.cs b/src/SMAPI.Internal/Platform.cs index 54fa289e..22d51abd 100644 --- a/src/SMAPI.Internal/Platform.cs +++ b/src/SMAPI.Internal/Platform.cs @@ -12,7 +12,7 @@ namespace StardewModdingAPI.Internal /// The Windows version of the game. Windows, - /// The Windows version of the game. + /// The Android version of the game. Android } } diff --git a/src/SMAPI/GamePlatform.cs b/src/SMAPI/GamePlatform.cs index 3bd74462..55f7606d 100644 --- a/src/SMAPI/GamePlatform.cs +++ b/src/SMAPI/GamePlatform.cs @@ -12,6 +12,9 @@ namespace StardewModdingAPI Mac = Platform.Mac, /// The Windows version of the game. - Windows = Platform.Windows + Windows = Platform.Windows, + + /// The Android version of the game. + Android = Platform.Android } }