19 lines
473 B
C++
Executable file
19 lines
473 B
C++
Executable file
#include "GDPerks.h"
|
|
|
|
FGDPerks::FGDPerks() {
|
|
this->IronWill = NULL;
|
|
this->DashPerk = NULL;
|
|
this->MarathonPerk = NULL;
|
|
this->ShieldLink = NULL;
|
|
this->Bezerk = NULL;
|
|
this->JumpBoots = NULL;
|
|
this->ImpactCompensators = NULL;
|
|
this->BeastMaster = NULL;
|
|
this->DownedBomb = NULL;
|
|
this->FieldMedic = NULL;
|
|
this->HeightenedSenses = NULL;
|
|
this->HoverBoots = NULL;
|
|
this->ActivePerkSlots = NULL;
|
|
this->PassivePerkSlots = NULL;
|
|
}
|
|
|