summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapContentItem.cs
blob: b0b7b5dd0e12e51f67050ae8cebd8e212b992c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using MonoGame.Extended.Tiled.Serialization;

namespace MonoGame.Extended.Content.Pipeline.Tiled
{
    public class TiledMapContentItem : TiledContentItem<TiledMapContent>
    {
        public TiledMapContentItem(TiledMapContent data)
            : base(data)
        {
        }
    }
}