20 lines
381 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
} |