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

@@ -1,14 +1,12 @@
#include "EnemyNjBuff.h"
#include "SkillComponent.h"
void EnemyNjBuff::OnStartup(Entity* self)
{
auto* skillComponent = self->GetComponent<SkillComponent>();
void EnemyNjBuff::OnStartup(Entity* self) {
auto* skillComponent = self->GetComponent<SkillComponent>();
if (skillComponent == nullptr)
{
return;
}
if (skillComponent == nullptr) {
return;
}
skillComponent->CalculateBehavior(1127, 24812, self->GetObjectID(), true);
skillComponent->CalculateBehavior(1127, 24812, self->GetObjectID(), true);
}