aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/menus.h
blob: ce6c1667fecb44b7dbc2ad01027c3ffaa85fd4b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef DM_MENUS_H
#define DM_MENUS_H

#include "dm.h"

namespace DM {

class MenuMan {
	DMEngine *_vm;
public:
	bool _shouldRefreshActionArea; // @ G0508_B_RefreshActionArea
	bool _actionAreaContainsIcons; // @ G0509_B_ActionAreaContainsIcons
	MenuMan(DMEngine *vm);
	void clearActingChampion(); // @ F0388_MENUS_ClearActingChampion

	void drawMovementArrows();
};

}

#endif // !DM_MENUS_H