Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/TiledMapRectangleObject.cs
T
Lucas Girouard-StranksandDylan Wilson 9e359fb750 Tiled Rework (#331)
* Tiled Rework

* fix failing tests

* really fix failing tests
2017-01-18 20:46:38 +10:00

17 lines
288 B
C#

#region
using Microsoft.Xna.Framework.Content;
#endregion
namespace MonoGame.Extended.Tiled
{
public sealed class TiledMapRectangleObject : TiledMapObject
{
internal TiledMapRectangleObject(ContentReader input)
: base(input)
{
}
}
}