mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
24 lines
391 B
C++
24 lines
391 B
C++
#include "FortHero.h"
|
|
|
|
bool UFortHero::IsLevelClamped() const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortHero::IsInExpeditionSquad() const {
|
|
return false;
|
|
}
|
|
|
|
int32 UFortHero::GetUnclampedLevel() const {
|
|
return 0;
|
|
}
|
|
|
|
UFortHeroType* UFortHero::GetHeroTypeBP() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortHero::UFortHero() {
|
|
this->hero_name = TEXT("Default Hero Name");
|
|
this->Refundable = false;
|
|
}
|
|
|