mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
19 lines
624 B
C++
19 lines
624 B
C++
#include "FortCreativeBudgetLibrary.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
bool UFortCreativeBudgetLibrary::CanPlacePlayset(UFortPlaysetItemDefinition* ItemDefinition, APlayerController* Controller) {
|
|
return false;
|
|
}
|
|
|
|
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() {
|
|
}
|
|
|