Files
FNGameProj/Source/FortniteGame/Private/FortGameplayAttributeData.cpp
2024-01-21 00:41:14 +01:00

12 lines
301 B
C++

#include "FortGameplayAttributeData.h"
FFortGameplayAttributeData::FFortGameplayAttributeData() {
this->Minimum = 0.00f;
this->Maximum = 0.00f;
this->bIsClamped = false;
this->bShouldClampBase = false;
this->UnclampedBaseValue = 0.00f;
this->UnclampedCurrentValue = 0.00f;
}