mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
17 lines
451 B
C++
17 lines
451 B
C++
#include "BuildingStructuralSupportSystem.h"
|
|
|
|
#include "reboot.h"
|
|
|
|
bool UBuildingStructuralSupportSystem::IsWorldLocValid(const FVector& WorldLoc)
|
|
{
|
|
static auto IsWorldLocValidFn = FindObject<UFunction>("/Script/FortniteGame.BuildingStructuralSupportSystem.IsWorldLocValid");
|
|
|
|
if (!IsWorldLocValidFn)
|
|
return true;
|
|
|
|
struct { FVector WorldLoc; bool Ret; } Params{ WorldLoc };
|
|
|
|
this->ProcessEvent(IsWorldLocValidFn, &Params);
|
|
|
|
return Params.Ret;
|
|
} |