Ejemplo n.º 1
0
        public void AddTile(float width, float height, int x, int y, Tile.Movement movement)
        {
            Tile tile = new Tile(width, height, movement);

            SetTile(x, y, tile);
        }
Ejemplo n.º 2
0
 public void UpdateTile(int x, int y, Tile.Movement movement)
 {
     tiles[width * x + y].movement = movement;
 }