DRG-Femboy-Voice/Source/FSD/Private/EnemyComponent.cpp
2025-04-15 12:39:31 -07:00

20 lines
358 B
C++
Executable file

#include "EnemyComponent.h"
UEnemyID* UEnemyComponent::GetID() {
return NULL;
}
FText UEnemyComponent::GetFamilyName() const {
return FText::GetEmpty();
}
UTexture2D* UEnemyComponent::GetFamilyIcon() const {
return NULL;
}
UEnemyComponent::UEnemyComponent() {
this->Family = NULL;
this->KillShout = NULL;
this->EnemyID = NULL;
}