blob: de4c7ec987f94cb90eba8717c568f8c2fe23de58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Tiled
{
public sealed class TiledMapRectangleObject : TiledMapObject
{
public TiledMapRectangleObject(int identifier, string name, Size2 size, Vector2 position, float rotation = 0, float opacity = 1, bool isVisible = true, string type = null)
: base(identifier, name, size, position, rotation, opacity, isVisible, type)
{
}
}
}
|