mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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;
|
|
}
|
|
|