From 87338af76bae49b439e0a5891a48b44f7f8f71b9 Mon Sep 17 00:00:00 2001 From: uruk Date: Thu, 30 Jan 2014 12:19:14 +0100 Subject: AVALANCHE: Add Ghostroom's skeleton. --- engines/avalanche/avalanche.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engines/avalanche/avalanche.cpp') diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp index a7e7be0ad3..902f057ebe 100644 --- a/engines/avalanche/avalanche.cpp +++ b/engines/avalanche/avalanche.cpp @@ -56,6 +56,7 @@ AvalancheEngine::AvalancheEngine(OSystem *syst, const AvalancheGameDescription * _closing = nullptr; _sound = nullptr; _nim = nullptr; + _ghostroom = nullptr; _platform = gd->desc.platform; initVariables(); @@ -79,6 +80,7 @@ AvalancheEngine::~AvalancheEngine() { delete _closing; delete _sound; delete _nim; + delete _ghostroom; for (int i = 0; i < 31; i++) { for (int j = 0; j < 2; j++) { @@ -162,6 +164,7 @@ Common::ErrorCode AvalancheEngine::initialize() { _closing = new Closing(this); _sound = new SoundHandler(this); _nim = new Nim(this); + _ghostroom = new GhostRoom(this); _graphics->init(); _dialogs->init(); -- cgit v1.2.3