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