mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
13 lines
284 B
C#
Executable file
13 lines
284 B
C#
Executable file
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
namespace CodeImp.DoomBuilder.GZBuilder.Data
|
|
{
|
|
public class GlowingFlatData
|
|
{
|
|
public PixelColor Color;
|
|
public double Height;
|
|
public int Brightness = 255;
|
|
public bool Fullbright;
|
|
public bool CalculateTextureColor;
|
|
}
|
|
}
|