This commit is contained in:
aozhiwei 2022-08-27 09:14:49 +08:00
parent 182818bdf5
commit d95df00bd6
3 changed files with 7 additions and 0 deletions

View File

@ -363,6 +363,7 @@ enum ObstacleType_e
kObstacleShield = 11, kObstacleShield = 11,
kObstacleStrengthenWall = 12, kObstacleStrengthenWall = 12,
kObstacleMedicalStation = 13, kObstacleMedicalStation = 13,
kObstaclePortal = 14,
}; };
enum BulletHit_e enum BulletHit_e

View File

@ -896,3 +896,8 @@ void RoomObstacle::ActiveMedicalStation()
); );
} }
} }
void RoomObstacle::ActivePortal()
{
}

View File

@ -55,6 +55,7 @@ private:
void ActiveKeepRangeBuff(); void ActiveKeepRangeBuff();
void ActiveStrengthenWall(); void ActiveStrengthenWall();
void ActiveMedicalStation(); void ActiveMedicalStation();
void ActivePortal();
void SummonAirDropBox(int box_id); void SummonAirDropBox(int box_id);
void ProcKeepRangeBuff(); void ProcKeepRangeBuff();