UltimateZoneBuilder/Source/Core/GZBuilder/Data/GlowingFlatData.cs
MaxED 437fe9ce86 Updated, GLDEFS parser: updated glowing texture parsing logic to better match GZDoom logic.
Removed, GLDEFS parser: removed GLOOME glow definitions support code.
2016-11-09 10:07:21 +00:00

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;
}
}