Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/Renderers/TiledMapModel.cs
T
2017-11-21 20:57:32 +10:00

12 lines
253 B
C#

namespace MonoGame.Extended.Tiled.Renderers
{
public class TiledMapModel
{
public TiledMapModel(TiledMapLayerModel[] layers)
{
Layers = layers;
}
public TiledMapLayerModel[] Layers { get; }
}
}