blob: d4ea2d68bab87dfa2d9bc7f786bb507f5be041d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DM_MENUS_H
#define DM_MENUS_H
#include "dm.h"
namespace DM {
class MenuMan {
DMEngine *_vm;
public:
MenuMan(DMEngine *vm);
void drawMovementArrows();
};
}
#endif // !DM_MENUS_H
|