mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
12 lines
253 B
C#
12 lines
253 B
C#
namespace MonoGame.Extended.Tiled.Renderers
|
|
{
|
|
public class TiledMapModel
|
|
{
|
|
public TiledMapModel(TiledMapLayerModel[] layers)
|
|
{
|
|
Layers = layers;
|
|
}
|
|
|
|
public TiledMapLayerModel[] Layers { get; }
|
|
}
|
|
} |