Vylpes
0d63bd120d
* Improve event handler to only run events that have been registered * Tidy up events into their own function files
7 lines
No EOL
152 B
TypeScript
7 lines
No EOL
152 B
TypeScript
|
|
import { EventType } from "../constants/EventType";
|
|
|
|
export default interface IEventItem {
|
|
EventType: EventType,
|
|
ExecutionFunction: Function,
|
|
} |