aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
authorMax Horn2002-05-14 23:35:28 +0000
committerMax Horn2002-05-14 23:35:28 +0000
commit64c6113d1541f79bb082c5c75bed88f31fe1b65b (patch)
tree1a23adec5e7b7f6ac526616bf4e19e702f54cca0 /init.cpp
parentb529d80ed7c39f2aa9718adda2828db27bba5df0 (diff)
downloadscummvm-rg350-64c6113d1541f79bb082c5c75bed88f31fe1b65b.tar.gz
scummvm-rg350-64c6113d1541f79bb082c5c75bed88f31fe1b65b.tar.bz2
scummvm-rg350-64c6113d1541f79bb082c5c75bed88f31fe1b65b.zip
removed actor.h from scumm.h; added _scumm member var to class Actor; some var renaming in preparation of more methord refactoring
svn-id: r4333
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/init.cpp b/init.cpp
index f9672de919..ef46026ed2 100644
--- a/init.cpp
+++ b/init.cpp
@@ -22,7 +22,13 @@
#include"stdafx.h"
#include"scumm.h"
+#include "actor.h"
Scumm::Scumm (void) {
/* No need to put anything here yet :) */
+ actor = new Actor[MAX_ACTORS](this);
}
+
+Scumm::~Scumm (void) {
+ delete [] actor;
+} \ No newline at end of file