diff options
author | aap <aap@papnet.eu> | 2019-07-25 16:33:37 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-25 16:33:37 +0200 |
commit | 3bb607f9cbc3d26a1b312f61f86ce3f42ef82a94 (patch) | |
tree | 102b0d7b779aa8969e1be0c9779d2fd7f700b904 /src/core/re3.cpp | |
parent | 60364f11da262cc6335eaaa0df5f8cf5c59d1e59 (diff) |
implemented CAutomobile::TankControl
Diffstat (limited to 'src/core/re3.cpp')
-rw-r--r-- | src/core/re3.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index a0032bc6..6566a282 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -296,6 +296,8 @@ DebugMenuPopulate(void) DebugMenuAddCmd("Spawn", "Spawn Banshee", [](){ SpawnCar(MI_BANSHEE); }); DebugMenuAddCmd("Spawn", "Spawn Yakuza", [](){ SpawnCar(MI_YAKUZA); }); DebugMenuAddCmd("Spawn", "Spawn Dodo", [](){ SpawnCar(MI_DODO); }); + DebugMenuAddCmd("Spawn", "Spawn Rhino", [](){ SpawnCar(MI_RHINO); }); + DebugMenuAddCmd("Spawn", "Spawn Firetruck", [](){ SpawnCar(MI_FIRETRUCK); }); DebugMenuAddCmd("Debug", "Fix Car", FixCar); |