mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
* Tiled Rework * fix failing tests * really fix failing tests
17 lines
288 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|