mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-30 15:41:30 +00:00
437fe9ce86
Removed, GLDEFS parser: removed GLOOME glow definitions support code.
13 lines
281 B
C#
13 lines
281 B
C#
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
namespace CodeImp.DoomBuilder.GZBuilder.Data
|
|
{
|
|
public class GlowingFlatData
|
|
{
|
|
public PixelColor Color;
|
|
public int Height;
|
|
public int Brightness = 255;
|
|
public bool Fullbright;
|
|
public bool CalculateTextureColor;
|
|
}
|
|
}
|