aboutsummaryrefslogtreecommitdiff
path: root/scummvm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scummvm.cpp')
-rw-r--r--scummvm.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/scummvm.cpp b/scummvm.cpp
index 99c3f9c2e5..e35bda2b2e 100644
--- a/scummvm.cpp
+++ b/scummvm.cpp
@@ -63,6 +63,19 @@ uint Scumm::getRandomNumberRng(uint min, uint max)
}
+Scumm::Scumm (void) {
+ _newgui = new NewGui(this);
+ _bundle = new Bundle(this);
+ _timer = new Timer(this);
+}
+
+Scumm::~Scumm (void) {
+ delete [] _actors;
+ delete _newgui;
+ delete _bundle;
+ delete _timer;
+}
+
void Scumm::scummInit()
{
int i;