diff options
| author | Max Horn | 2002-05-14 23:35:28 +0000 | 
|---|---|---|
| committer | Max Horn | 2002-05-14 23:35:28 +0000 | 
| commit | 64c6113d1541f79bb082c5c75bed88f31fe1b65b (patch) | |
| tree | 1a23adec5e7b7f6ac526616bf4e19e702f54cca0 /init.cpp | |
| parent | b529d80ed7c39f2aa9718adda2828db27bba5df0 (diff) | |
| download | scummvm-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.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
@@ -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  | 
