mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 12:13:40 +00:00
18 lines
475 B
C++
18 lines
475 B
C++
#include "AIHotSpotSlotGenerator.h"
|
|
#include "Templates/SubclassOf.h"
|
|
|
|
AAIHotSpot* UAIHotSpotSlotGenerator::GetHotSpot() const {
|
|
return NULL;
|
|
}
|
|
|
|
void UAIHotSpotSlotGenerator::GenerateSlots_Implementation() {
|
|
}
|
|
|
|
UAIHotSpotSlot* UAIHotSpotSlotGenerator::AddSlot(const FVector& RelativeLocation, const FRotator& RelativeRotation, TSubclassOf<UAIHotSpotSlot> CustomSlotClass, bool bEnabled) const {
|
|
return NULL;
|
|
}
|
|
|
|
UAIHotSpotSlotGenerator::UAIHotSpotSlotGenerator() {
|
|
}
|
|
|