diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2020-09-02 11:08:17 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2020-09-02 11:08:17 +0200 |
| commit | 4811afb52c511565d2b13f36ed645243c7557803 (patch) | |
| tree | 3533dc4a8dfb5ed610033e0b9c527a535be6143b /Program.cs | |
board generation
Diffstat (limited to 'Program.cs')
| -rw-r--r-- | Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..06b734c --- /dev/null +++ b/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Chess +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} |
