blob: 6421d7c04f880bf5f329a845354ed6a645b5f341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "dm.h"
#include "champion.h"
namespace DM {
class ObjectMan {
DMEngine *_vm;
public:
ObjectMan(DMEngine *vm);
IconIndice getObjectType(Thing thing); // @ F0032_OBJECT_GetType
};
}
|