18 lines
493 B
C#
18 lines
493 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZoFo.GameCore.GameManagers.MapManager.MapElements
|
|
{
|
|
public class TileMap
|
|
{
|
|
public bool Infinite { get; set; }
|
|
public int TileHeight { get; set; }
|
|
public int TileWidth { get; set; }
|
|
public List<TileSetInfo> TileSets { get; set; }
|
|
public List<Layer> Layers { get; set; }
|
|
}
|
|
}
|