TiledMapRectangleObject.cs 439 B

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