using System;
namespace StardewModdingAPI
{
/// The game framework running the game.
public enum GameFramework
{
/// The XNA Framework, previously used on Windows.
[Obsolete("Stardew Valley no longer uses XNA Framework on any supported platform.")]
Xna,
/// The MonoGame framework.
MonoGame
}
}