Commit Description:
Refactor and cleanup.
Commit Description:
Refactor and cleanup.
References:
File last commit:
Show/Diff file:
Action:
isometric-park-fna/TileMap.cs
23 lines | 376 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
namespace isometricparkfna
{
//class MapRow
//{
// public List<MapCell> Columns = new List<MapCell>();
//}
public class TileMap
{
//public List<List<Tile>> Tiles;
public int MapWidth = 50;
public int MapHeight = 50;
public TileMap()
{
}
}
}