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.
|
|
|
class EventRouter {
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Dispatches
|
|
* @param event
|
|
*/
|
|
dispatchEvent(event) {
|
|
|
|
}
|
|
|
|
/**
|
|
* Registeres discord client events to the EventRouter
|
|
* @param client
|
|
*/
|
|
registerClientEvents(client) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class EventGroup
|