Mesen-SX/UI/Config/CheatWindowConfig.cs
2019-10-12 22:40:25 -04:00

16 lines
325 B
C#

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;
}
}