More OO-like. a bit easier to read/use things
This commit is contained in:
20
hexworld/Driver.cs
Normal file
20
hexworld/Driver.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user