diff options
| author | uruk | 2013-07-27 21:36:07 +0200 |
|---|---|---|
| committer | uruk | 2013-07-27 21:36:07 +0200 |
| commit | eec48fa42e83f7bf364d61c8d2d687ad2a758830 (patch) | |
| tree | 344bf61c5d94f36a601ef9f556b8762006178b76 /engines/avalanche/avalanche.cpp | |
| parent | 341bf679c00ae2de0f3350b1ec95d4b02b246093 (diff) | |
| download | scummvm-rg350-eec48fa42e83f7bf364d61c8d2d687ad2a758830.tar.gz scummvm-rg350-eec48fa42e83f7bf364d61c8d2d687ad2a758830.tar.bz2 scummvm-rg350-eec48fa42e83f7bf364d61c8d2d687ad2a758830.zip | |
AVALANCHE: Introduce new class: Parser. Update rest of the code accordingly.
Diffstat (limited to 'engines/avalanche/avalanche.cpp')
| -rw-r--r-- | engines/avalanche/avalanche.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp index 919481679c..09695cd236 100644 --- a/engines/avalanche/avalanche.cpp +++ b/engines/avalanche/avalanche.cpp @@ -57,6 +57,7 @@ AvalancheEngine::~AvalancheEngine() { delete _rnd; delete _graphics; + delete _parser; delete _avalot; delete _gyro; @@ -79,6 +80,7 @@ AvalancheEngine::~AvalancheEngine() { Common::ErrorCode AvalancheEngine::initialize() { _graphics = new Graphics(this); + _parser = new Parser(this); _avalot = new Avalot(this); _gyro = new Gyro(this); |
