hooked in new experimental, *incomplete* GUI code to F6/F7

svn-id: r4464
This commit is contained in:
Max Horn 2002-07-05 17:00:18 +00:00
parent 84cafcc64a
commit eacf0afa95
6 changed files with 27 additions and 15 deletions

View file

@ -23,9 +23,13 @@
#include"stdafx.h"
#include"scumm.h"
#include"actor.h"
#include"newgui.h"
Scumm::Scumm (void) {
_newgui = new NewGui(this);
}
Scumm::~Scumm (void) {
delete [] actor;
delete _newgui;
}