Add xmaptype structures

This commit is contained in:
Nicholas Johnson 2025-09-03 13:12:39 -04:00
parent 7250e1f460
commit fd1868ed46

18
libs/xassets/xmaptype.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef XMAPTYPE_H
#define XMAPTYPE_H
enum XMapType
{
MAPTYPE_NONE = 0x0,
MAPTYPE_INVALID1 = 0x1,
MAPTYPE_INVALID2 = 0x2,
MAPTYPE_2D = 0x3,
MAPTYPE_3D = 0x4,
MAPTYPE_CUBE = 0x5,
MAPTYPE_COUNT = 0x6,
};
#endif // XMAPTYPE_H