using System.Runtime.InteropServices; namespace SabreTools.Data.Models.BSP { /// /// 4-byte lightmap structure /// /// [StructLayout(LayoutKind.Sequential)] public class ColorRGBExp32 { public byte Red; public byte Green; public byte Blue; public sbyte Exponent; } }