mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-05 17:20:30 +00:00
17 lines
310 B
C++
17 lines
310 B
C++
#include "dm.h"
|
|
#include "gfx.h"
|
|
#include "champion.h"
|
|
|
|
|
|
|
|
namespace DM {
|
|
|
|
class InventoryMan {
|
|
DMEngine *_vm;
|
|
public:
|
|
int16 _inventoryChampionOrdinal; // @ G0423_i_InventoryChampionOrdinal
|
|
InventoryMan(DMEngine *vm);
|
|
void toggleInventory(ChampionIndex championIndex); // @ F0355_INVENTORY_Toggle_CPSE
|
|
};
|
|
|
|
} |