namespace SabreTools.Data.Models.WAD3
{
///
public enum FileType : byte
{
///
/// spraydecal (0x40): Same as .
/// Only found in entry LOGO (or {LOGO) in tempdecal.wad
///
Spraydecal = 0x40,
///
/// qpic (0x42): A simple image of any size.
///
Qpic = 0x42,
///
/// miptex (0x43): World texture with dimensions that are multiple-of-16
/// and 4 mipmaps. This is the typical entry type.
///
Miptex = 0x43,
///
/// font (0x46): Fixed-height font for 256 ASCII characters.
///
Font = 0x46,
}
}