Skip to content

Commit

Permalink
DM: Add ObjectMan
Browse files Browse the repository at this point in the history
  • Loading branch information
Bendegúz Nagy committed Aug 26, 2016
1 parent b7c225b commit 9d7f35c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/dm/module.mk
Expand Up @@ -8,7 +8,8 @@ MODULE_OBJS := \
eventman.o \
menus.o \
champion.o \
loadsave.o
loadsave.o \
objectman.o

MODULE_DIRS += \
engines/dm
Expand Down
8 changes: 8 additions & 0 deletions engines/dm/objectman.cpp
@@ -0,0 +1,8 @@
#include "objectman.h"


namespace DM {

ObjectMan::ObjectMan(DMEngine *vm): _vm(vm) {}

}
13 changes: 13 additions & 0 deletions engines/dm/objectman.h
@@ -0,0 +1,13 @@
#include "dm.h"


namespace DM {

class ObjectMan {
DMEngine *_vm;
public:
ObjectMan(DMEngine *vm);

};

}

0 comments on commit 9d7f35c

Please sign in to comment.