You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
298 B
JavaScript
27 lines
298 B
JavaScript
6 years ago
|
|
||
|
class EventRouter {
|
||
|
|
||
|
constructor() {
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Dispatches
|
||
|
* @param event
|
||
|
*/
|
||
|
dispatchEvent(event) {
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Registeres discord client events to the EventRouter
|
||
|
* @param client
|
||
|
*/
|
||
|
registerClientEvents(client) {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
class EventGroup
|