14 lines
109 B
C
14 lines
109 B
C
|
#include "dm.h"
|
||
|
|
||
|
|
||
|
namespace DM {
|
||
|
|
||
|
class ObjectMan {
|
||
|
DMEngine *_vm;
|
||
|
public:
|
||
|
ObjectMan(DMEngine *vm);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|