Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Libraries/ResourceLib/Src/Resources.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ std::unordered_map<std::string, Resource> g_Resources = {
REGISTER_RESOURCE(ENUM, SEnumType)
#endif

#if ZHM_TARGET == 3
REGISTER_RESOURCE(VOXL, SVoxelSpaceData)
#endif

#if ZHM_TARGET == 2026
REGISTER_RESOURCE(KWOR, SSerializedKeyword)
REGISTER_RESOURCE(TDAT, STerrainResource)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ A collection of libraries that allow converting various game resources to JSON a

Currently supported games and resource types:

| Game | Supported Resources |
|-----------------|-----------------------------------------------------------------------------------------------------------------------------------------|
| Hitman 3 | `TEMP`, `TBLU`, `AIRG`, `ATMD`*, `CBLU`, `CPPT`, `CRMD`, `DSWB`, `ECPB`, `GFXF`, `GIDX`, `VIDB`, `WSGB`, `ENUM`, `RTLV`, `UICB`, `ASVA` |
| Hitman 2 | `TEMP`, `TBLU`, `AIRG`, `ATMD`*, `CBLU`, `CPPT`, `CRMD`, `DSWB`, `ECPB`, `GFXF`, `GIDX`, `VIDB`, `WSGB`, `ENUM`, `RTLV`, `UICB`, `ASVA` |
| Hitman 2016 | `TEMP`, `TBLU`, `AIRG`, `ATMD`*, `CBLU`, `CPPT`, `CRMD`, `DSWB`, `GFXF`, `GIDX`, `VIDB`, `WSGB`, `RTLV`, `UICB`, `ASVA` |
| 007 First Light | `TDPK`, `KWOR`, `ENUM`, `ECPB`, `GIDX`, `WSGB`, `CBLU`, `GFXF`, `DSWB`, `CPPT`, `CRMD`, `UICB`, `RTLV`, `TBLU`, `VIDB`, `TDAT`, `TEMP` |
| Game | Supported Resources |
|-----------------|-------------------------------------------------------------------------------------------------------------------------------------------------|
| Hitman 3 | `TEMP`, `TBLU`, `AIRG`, `ATMD`*, `CBLU`, `CPPT`, `CRMD`, `DSWB`, `ECPB`, `GFXF`, `GIDX`, `VIDB`, `WSGB`, `ENUM`, `RTLV`, `UICB`, `ASVA`, `VOXL` |
| Hitman 2 | `TEMP`, `TBLU`, `AIRG`, `ATMD`*, `CBLU`, `CPPT`, `CRMD`, `DSWB`, `ECPB`, `GFXF`, `GIDX`, `VIDB`, `WSGB`, `ENUM`, `RTLV`, `UICB`, `ASVA` |
| Hitman 2016 | `TEMP`, `TBLU`, `AIRG`, `ATMD`*, `CBLU`, `CPPT`, `CRMD`, `DSWB`, `GFXF`, `GIDX`, `VIDB`, `WSGB`, `RTLV`, `UICB`, `ASVA` |
| 007 First Light | `TDPK`, `KWOR`, `ENUM`, `ECPB`, `GIDX`, `WSGB`, `CBLU`, `GFXF`, `DSWB`, `CPPT`, `CRMD`, `UICB`, `RTLV`, `TBLU`, `VIDB`, `TDAT`, `TEMP` |

*`*` Experimental*

Expand Down
Loading