Mesen-SX/UI/Config/CheatWindowConfig.cs

17 lines
325 B
C#
Raw Normal View History

2019-10-12 22:40:25 -04:00
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesen.GUI.Config
{
public class CheatWindowConfig
{
public Size WindowSize = new Size(0, 0);
public Point WindowLocation;
public bool DisableAllCheats = false;
}
}