mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
13 lines
251 B
C#
13 lines
251 B
C#
|
|
namespace MonoGame.Extended.Content.Pipeline.Tiled
|
|
{
|
|
public class TiledMapProcessorResult
|
|
{
|
|
public TiledMapProcessorResult(TmxMap map)
|
|
{
|
|
Map = map;
|
|
}
|
|
|
|
public TmxMap Map { get; private set; }
|
|
}
|
|
} |