17 lines
534 B
C++
Executable file
17 lines
534 B
C++
Executable file
#include "VictoryPoseFunctionLibrary.h"
|
|
|
|
bool UVictoryPoseFunctionLibrary::IsRandomVictoryPose(UVictoryPose* VictoryPose) {
|
|
return false;
|
|
}
|
|
|
|
TArray<UVictoryPose*> UVictoryPoseFunctionLibrary::GetOwnedVictoryPoses(UObject* WorldContextObject, UPlayerCharacterID* characterID) {
|
|
return TArray<UVictoryPose*>();
|
|
}
|
|
|
|
UVictoryPose* UVictoryPoseFunctionLibrary::GetEquippedVictoryPose(UObject* WorldContextObject, UPlayerCharacterID* characterID) {
|
|
return NULL;
|
|
}
|
|
|
|
UVictoryPoseFunctionLibrary::UVictoryPoseFunctionLibrary() {
|
|
}
|
|
|