scummvm/engines/dm/inventory.h

20 lines
486 B
C
Raw Normal View History

#include "dm.h"
#include "gfx.h"
2016-06-19 18:05:19 +02:00
#include "champion.h"
namespace DM {
2016-06-20 19:39:36 +02:00
#define kChampionStatusBoxSpacing 69 // @ C69_CHAMPION_STATUS_BOX_SPACING
class InventoryMan {
DMEngine *_vm;
public:
2016-06-19 18:05:19 +02:00
int16 _inventoryChampionOrdinal; // @ G0423_i_InventoryChampionOrdinal
InventoryMan(DMEngine *vm);
2016-06-19 18:05:19 +02:00
void toggleInventory(ChampionIndex championIndex); // @ F0355_INVENTORY_Toggle_CPSE
void drawStatusBoxPortrait(ChampionIndex championIndex); // @ F0354_INVENTORY_DrawStatusBoxPortrait
};
}