More OO-like. a bit easier to read/use things

This commit is contained in:
2017-02-24 21:22:13 -05:00
parent 338efc337e
commit 2710007ec2
12 changed files with 348 additions and 75 deletions

20
hexworld/Driver.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hexworld
{
public class Driver
{
public static void Main(string[] args)
{
using (var gw = new HexWindow(1920, 1080))
{
gw.Run();
}
}
}
}