aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.cpp
diff options
context:
space:
mode:
authorSven Hesse2008-09-02 20:15:42 +0000
committerSven Hesse2008-09-02 20:15:42 +0000
commit741364602cc8a220f2d7cb23074efa48621c0cda (patch)
treeb6962175baf5d30ca4c1b705ca0520cc2d849296 /engines/gob/gob.cpp
parent3dc066e983de9f141fcfce1ae1279359e9fc0586 (diff)
downloadscummvm-rg350-741364602cc8a220f2d7cb23074efa48621c0cda.tar.gz
scummvm-rg350-741364602cc8a220f2d7cb23074efa48621c0cda.tar.bz2
scummvm-rg350-741364602cc8a220f2d7cb23074efa48621c0cda.zip
Urban Runner stubs
svn-id: r34286
Diffstat (limited to 'engines/gob/gob.cpp')
-rw-r--r--engines/gob/gob.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp
index 8057402985..bfe0756307 100644
--- a/engines/gob/gob.cpp
+++ b/engines/gob/gob.cpp
@@ -403,6 +403,20 @@ bool GobEngine::initGameParts() {
_saveLoad = new SaveLoad_v4(this, _targetName.c_str());
break;
+ case kGameTypeUrban:
+ _init = new Init_v3(this);
+ _video = new Video_v6(this);
+ _inter = new Inter_v6(this);
+ _parse = new Parse_v2(this);
+ _mult = new Mult_v2(this);
+ _draw = new Draw_v2(this);
+ _game = new Game_v2(this);
+ _map = new Map_v4(this);
+ _goblin = new Goblin_v4(this);
+ _scenery = new Scenery_v2(this);
+ _saveLoad = new SaveLoad_v4(this, _targetName.c_str());
+ break;
+
default:
deinitGameParts();
return false;