format codebase

This commit is contained in:
aronwk-aaron
2022-07-28 08:39:57 -05:00
parent 4f7aa11067
commit 19e77a38d8
881 changed files with 34700 additions and 38689 deletions

View File

@@ -19,25 +19,25 @@ class BaseCombatAIComponent;
class BossSpiderQueenEnemyServer final : public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
void OnDie(Entity* self, Entity* killer) override;
void OnHitOrHealResult(Entity* self, Entity* attacker, int32_t damage) override;
void OnUpdate(Entity* self) override;
void WithdrawSpider(Entity* self, bool withdraw);
void SpawnSpiderWave(Entity* self, int spiderCount);
void SpiderWaveManager(Entity* self);
void ToggleForSpecial(Entity* self, bool state);
void RunRainOfFire(Entity* self);
void RainOfFireManager(Entity* self);
void RapidFireShooterManager(Entity* self);
void RunRapidFireShooter(Entity* self);
@@ -53,7 +53,7 @@ private:
BaseCombatAIComponent* combat = nullptr;
NiQuaternion originRotation;
int m_CurrentBossStage = 0;
int m_DeathCounter = 0;
std::vector<int> ThresholdTable;