mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-14 00:20:40 +00:00
16 lines
350 B
C#
16 lines
350 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 Fullblack; // GLOOME only
|
|||
|
public bool Subtractive; // GLOOME only
|
|||
|
public bool CalculateTextureColor;
|
|||
|
}
|
|||
|
}
|