mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
19 lines
382 B
C#
19 lines
382 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.GZBuilder.Data
|
|||
|
{
|
|||
|
public sealed class SkyboxInfo
|
|||
|
{
|
|||
|
private readonly string name;
|
|||
|
public string Name { get { return name; } }
|
|||
|
public readonly List<string> Textures;
|
|||
|
public bool FlipTop;
|
|||
|
|
|||
|
public SkyboxInfo(string name)
|
|||
|
{
|
|||
|
this.name = name;
|
|||
|
Textures = new List<string>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|