Mesen-SX/UI/Debugger/Config/AssemblerConfig.cs

17 lines
412 B
C#
Raw Normal View History

2020-02-11 22:01:06 -05:00
using Mesen.GUI.Controls;
using Mesen.GUI.Utilities;
using System.Drawing;
namespace Mesen.GUI.Config
{
public class AssemblerConfig
{
public Size WindowSize = new Size(0, 0);
public Point WindowLocation;
public string FontFamily = BaseControl.MonospaceFontFamily;
public FontStyle FontStyle = FontStyle.Regular;
public float FontSize = BaseControl.DefaultFontSize;
public int Zoom = 100;
}
}