using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.BSP
{
///
/// The lighting data for each sample is represented by an array
/// of 6 ColorRGBExp32
///
///
[StructLayout(LayoutKind.Sequential)]
public class CompressedLightCube
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)]
public ColorRGBExp32[] Colors = new ColorRGBExp32[6];
}
}