Mesen/GUI.NET/Forms/BaseForm.cs
Souryo 8bff3c7283 -Added control bindings to BaseConfigForm
-Remove icon from forms and added it generically to BaseForm (reduces .exe size greatly)
2015-07-05 19:03:57 -04:00

22 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Mesen.GUI.Forms
{
public class BaseForm : Form
{
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if(!DesignMode) {
Icon = Properties.Resources.MesenIcon;
}
}
}
}