Updated libs/xassets/xgame.h

This commit is contained in:
RedLine AI Agent 2025-09-05 21:31:49 +00:00
parent 0e48faf7a3
commit a8ca882e07

17
libs/xassets/xgame.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef XGAME_H
#define XGAME_H
enum XGame {
GAME_NONE = 0x00, // No game
GAME_COD1 = 0x01, // Call of Duty
GAME_COD2 = 0x02, // Call of Duty 2
GAME_COD3 = 0x03, // Call of Duty 3
GAME_COD4 = 0x04, // Modern Warware 1
GAME_COD5 = 0x05, // World at War
GAME_COD6 = 0x06, // Modern Warfare 2
GAME_COD7 = 0x07, // Black Ops 1
GAME_COD8 = 0x08, // Modern Warfare 3
GAME_COD9 = 0x09 // Black Ops 2
};
#endif // XGAME_H