2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-01-25 09:23:03 +00:00

feat: add embedded image loader for every supported game

This commit is contained in:
Jan Laupetin
2026-01-04 13:43:29 +01:00
parent 33584f6f7b
commit 4cdccba016
13 changed files with 191 additions and 50 deletions

View File

@@ -1242,6 +1242,18 @@ namespace T5
int platform[2];
};
enum MapType
{
MAPTYPE_NONE = 0x0,
MAPTYPE_INVALID1 = 0x1,
MAPTYPE_INVALID2 = 0x2,
MAPTYPE_2D = 0x3,
MAPTYPE_3D = 0x4,
MAPTYPE_CUBE = 0x5,
MAPTYPE_COUNT
};
enum TextureSemantic
{
TS_2D = 0x0,