Files
MonoGame.Extended/source/MonoGame.Extended.Tiled/TiledMapGroupLayer.cs
T
2024-05-18 19:59:41 -04:00

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;
}
}
}