mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 03:56:31 +00:00
13 lines
291 B
C#
13 lines
291 B
C#
using MonoGame.Extended.Tiled.Serialization;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.Tiled
|
|
{
|
|
public class TiledMapContentItem : TiledContentItem<TiledMapContent>
|
|
{
|
|
public TiledMapContentItem(TiledMapContent data)
|
|
: base(data)
|
|
{
|
|
}
|
|
}
|
|
}
|