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

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() {
}