This commit is contained in:
Charles 2001-08-09 15:21:08 +00:00
parent c6dd3b1392
commit 1aa2694e57
2 changed files with 7 additions and 1 deletions

View file

@ -761,6 +761,12 @@ void CGameScene::setReadyToExit()
CFader::setFadingOut(); CFader::setFadingOut();
} }
/*****************************************************************************/
void CGameScene::setBossHasBeenKilled()
{
s_bossHasBeenKilled=true;
s_showBossTextOnRespawn=false;
}
/*****************************************************************************/ /*****************************************************************************/
void CGameScene::hitBossArenaTrigger() void CGameScene::hitBossArenaTrigger()
{ {

View file

@ -64,7 +64,7 @@ static void restartlevel() {s_restartLevel=true;}
static ACTOR_TYPE getActorType( int actorNum ) {return actorType[actorNum];} static ACTOR_TYPE getActorType( int actorNum ) {return actorType[actorNum];}
static void setBossHasBeenKilled() {s_bossHasBeenKilled=true;} static void setBossHasBeenKilled();
static int getBossHasBeenKilled() {return s_bossHasBeenKilled;} static int getBossHasBeenKilled() {return s_bossHasBeenKilled;}
static void dropHealth(DVECTOR const &Pos,int Amount,int Vel); static void dropHealth(DVECTOR const &Pos,int Amount,int Vel);