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

25 lines
499 B
C++
Executable file

#include "BoxFunctionLibrary.h"
FBox UBoxFunctionLibrary::CreateBoxAt(FVector Location, FVector Size) {
return FBox{};
}
FVector UBoxFunctionLibrary::ClosestPointToBox(FVector Pos, const FBox& Box) {
return FVector{};
}
float UBoxFunctionLibrary::BoxSize(FBox Box) {
return 0.0f;
}
FVector UBoxFunctionLibrary::BoxExtends(FBox Box) {
return FVector{};
}
FVector UBoxFunctionLibrary::BoxCenter(FBox Box) {
return FVector{};
}
UBoxFunctionLibrary::UBoxFunctionLibrary() {
}