summaryrefslogtreecommitdiff
path: root/src/SMAPI/GameFramework.cs
blob: 60fbe56e7937ca385bb8351c4f172078cf43ef50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace StardewModdingAPI
{
    /// <summary>The game framework running the game.</summary>
    public enum GameFramework
    {
        /// <summary>The XNA Framework, previously used on Windows.</summary>
        [Obsolete("Stardew Valley no longer uses XNA Framework on any supported platform.  This value will be removed in SMAPI 4.0.0.")]
        Xna,

        /// <summary>The MonoGame framework.</summary>
        MonoGame
    }
}