Add GamePlatform Android

This commit is contained in:
Chris 2019-09-19 17:44:48 -04:00
parent fda5764810
commit a2976ca5f6
2 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace StardewModdingAPI.Internal
/// <summary>The Windows version of the game.</summary> /// <summary>The Windows version of the game.</summary>
Windows, Windows,
/// <summary>The Windows version of the game.</summary> /// <summary>The Android version of the game.</summary>
Android Android
} }
} }

View File

@ -12,6 +12,9 @@ namespace StardewModdingAPI
Mac = Platform.Mac, Mac = Platform.Mac,
/// <summary>The Windows version of the game.</summary> /// <summary>The Windows version of the game.</summary>
Windows = Platform.Windows Windows = Platform.Windows,
/// <summary>The Android version of the game.</summary>
Android = Platform.Android
} }
} }