From fd1868ed46def0bdd81d0252a9654b134aa72647 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Wed, 3 Sep 2025 13:12:39 -0400 Subject: [PATCH] Add xmaptype structures --- libs/xassets/xmaptype.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libs/xassets/xmaptype.h diff --git a/libs/xassets/xmaptype.h b/libs/xassets/xmaptype.h new file mode 100644 index 0000000..75747b1 --- /dev/null +++ b/libs/xassets/xmaptype.h @@ -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 + +