Initial Level Additions

This commit is contained in:
2017-02-27 20:41:11 -05:00
parent 1c5491a2c5
commit 86ed1473e4
8 changed files with 508 additions and 541 deletions

View File

@@ -1,10 +1,18 @@
namespace hexworld
using System;
using Newtonsoft.Json;
namespace hexworld
{
public class Driver
{
public static void Main(string[] args)
{
using (var gw = new HexRender(1280, 720)) gw.Run();
// var tile = JsonConvert.DeserializeObject<TileInfo>("{\"mesh\":\"RightColumn\", \"pos\": {\"x\": 1, \"y\": 2, \"z\": 3}}");
//
// Console.Out.WriteLine("tile = {0}", tile);
// Console.ReadKey();
}
}
}