mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
18 lines
382 B
C#
Executable file
18 lines
382 B
C#
Executable file
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>();
|
|
}
|
|
}
|
|
}
|