This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Diamond/hexworld/Driver.cs
2017-02-24 21:45:40 -05:00

20 lines
381 B
C#

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(1280, 720))
{
gw.Run();
}
}
}
}