public void TestDeserialize()
        {
            var el = serialize();


            var world = TestWorldBuilder.createTestWorld(10, 10);
            var store = new GenericDatastore(world);


            store.Deserialize(el);

            var list = store.RootRecord.GetList("Towns", r => new Town(null, r));

            list.Print();
            list[0].TownVoxels.Print();
            list[0].TownCenter.ToString().Print();
        }