Map wird nicht mehr gedreht und gespiegelt angezeigt. (Der Server vertauscht tatsächlich col und row)

This commit is contained in:
2014-05-02 09:33:38 +02:00
parent fd0e6c2fc6
commit 62e695db24
3 changed files with 11 additions and 11 deletions

View File

@@ -6,9 +6,9 @@ namespace WorldOfPeacecraft
{
public Tile[,] map;
public Map (int height, int width)
public Map (int width, int height)
{
map = new Tile[height, width];
map = new Tile[width, height];
}
public void SetTile (Tile t)