HDB: Add _dummyLaser

This commit is contained in:
Nipun Garg 2019-06-27 06:21:02 +05:30 committed by Eugene Sandulenko
parent 4905233ef0
commit b6bfa8c03e
2 changed files with 2 additions and 1 deletions

View File

@ -773,6 +773,7 @@ bool AI::init() {
_kcHolderBlackOn = g_hdb->_drawMan->getTileIndex("t32_kcholder_black_on");
_dummyPlayer.type = AI_GUY;
_dummyLaser.type = AI_LASERBEAM;
strcpy(_dummyPlayer.entityName, "Virtual Player");
_playerRunning = false;

View File

@ -1006,7 +1006,7 @@ public:
Common::Array<HereT *> *_hereList;
// Virtual Player
AIEntity _dummyPlayer;
AIEntity _dummyPlayer, _dummyLaser;
// Cinematic Variables
Common::Array<CineCommand *> _cine;