mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
15 lines
477 B
C++
15 lines
477 B
C++
#include "FortCreativeBudgetLibrary.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
bool UFortCreativeBudgetLibrary::CanPlaceInstanceOfClass(APlayerController* Controller, TSubclassOf<AActor> Class, const FVector& Location) {
|
|
return false;
|
|
}
|
|
|
|
bool UFortCreativeBudgetLibrary::CanPlaceClassInstances(APlayerController* Controller, const TArray<TSubclassOf<AActor>> Classes, const FVector& Location) {
|
|
return false;
|
|
}
|
|
|
|
UFortCreativeBudgetLibrary::UFortCreativeBudgetLibrary() {
|
|
}
|
|
|