13 lines
311 B
C++
Executable file
13 lines
311 B
C++
Executable file
#include "FSDEventCollection.h"
|
|
|
|
UFSDEvent* UFSDEventCollection::FindEventHandler(const FName& EventName) const {
|
|
return NULL;
|
|
}
|
|
|
|
TArray<UFSDEvent*> UFSDEventCollection::FindAllEventHandlers(const FName& EventName) const {
|
|
return TArray<UFSDEvent*>();
|
|
}
|
|
|
|
UFSDEventCollection::UFSDEventCollection() {
|
|
}
|
|
|