Files
2026-04-22 15:51:07 +02:00

26 lines
620 B
C++

#include "FrontendAnimInstance.h"
void UFrontendAnimInstance::PlaySelected() {
}
void UFrontendAnimInstance::PlayOutro() {
}
void UFrontendAnimInstance::PlayIntro() {
}
UFrontendAnimInstance::UFrontendAnimInstance() {
this->bIsSkydiving = false;
this->FortPlayerPawn = NULL;
this->Gender = EFortDisplayGender::Male;
this->IntroAnimation_Female = NULL;
this->IntroAnimation_Male = NULL;
this->OutroAnimation_Female = NULL;
this->OutroAnimation_Male = NULL;
this->SelectedAnimation_Female = NULL;
this->SelectedAnimation_Male = NULL;
this->bCanPlayCustomAnimations = false;
}