summaryrefslogtreecommitdiff
path: root/src/SMAPI/GameFramework.cs
blob: 7670ce8f54e12f3c9d011766fd34fd75545f74e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingAPI
{
    /// <summary>The game framework running the game.</summary>
    public enum GameFramework
    {
        /// <summary>The XNA Framework on Windows.</summary>
        Xna,

        /// <summary>The MonoGame framework, usually on non-Windows platforms.</summary>
        MonoGame
    }
}