mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
18 lines
514 B
C#
18 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Tiled
|
|
{
|
|
public class TiledMapGroupLayer : TiledMapLayer
|
|
{
|
|
public List<TiledMapLayer> Layers { get; }
|
|
public TiledMapGroupLayer(string name, string type, List<TiledMapLayer> layers, Vector2? offset = null, Vector2? parallaxFactor = null, float opacity = 1, bool isVisible = true)
|
|
: base(name, type, offset, parallaxFactor, opacity, isVisible)
|
|
{
|
|
Layers = layers;
|
|
}
|
|
}
|
|
}
|