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

20 lines
438 B
C++
Executable file

#include "TimedSpecialEventSpawner.h"
void UTimedSpecialEventSpawner::UnblockEventSpawn(UObject* blocker) {
}
void UTimedSpecialEventSpawner::SpawnEvent() const {
}
void UTimedSpecialEventSpawner::BlockEventSpawn(UObject* blocker) {
}
bool UTimedSpecialEventSpawner::AreEventSpawnsBlocked() const {
return false;
}
UTimedSpecialEventSpawner::UTimedSpecialEventSpawner() {
this->MinTime = 0.00f;
this->MaxTime = 1.00f;
}