mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
13 lines
267 B
C#
13 lines
267 B
C#
using Microsoft.Xna.Framework.Content;
|
|
|
|
namespace MonoGame.Extended.Tiled
|
|
{
|
|
public sealed class TiledMapRectangleObject : TiledMapObject
|
|
{
|
|
internal TiledMapRectangleObject(ContentReader input)
|
|
: base(input)
|
|
{
|
|
}
|
|
}
|
|
}
|