1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
using System; namespace NW4RTools { public enum PrimitiveType { Quads = 0, Triangles = 2, TriangleStrip = 3, TriangleFan = 4, Lines = 5, LineStrip = 6, Points = 7 } public enum TextureFormat { I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA8, C4 = 8, C8 = 9, C14X2 = 0xA, CMPR = 0xE } }