16 lines
325 B
C#
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;
|
|
}
|
|
}
|