mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#include "FortKeepAmmoStash.h"
|
|
|
|
FFortKeepAmmoStash::FFortKeepAmmoStash() {
|
|
this->Max1 = 0;
|
|
this->Cooldown1 = 0;
|
|
this->Max2 = 0;
|
|
this->Cooldown2 = 0;
|
|
this->Max3 = 0;
|
|
this->Cooldown3 = 0;
|
|
this->Max4 = 0;
|
|
this->Cooldown4 = 0;
|
|
this->PickupTier = 0;
|
|
}
|
|
|