2023-08-19 16:56:22 +01:00
|
|
|
import { CoreClient } from "./client/client";
|
|
|
|
|
|
|
|
import About from "./commands/about";
|
2023-09-03 20:27:29 +01:00
|
|
|
import Drop from "./commands/drop";
|
|
|
|
|
|
|
|
import Claim from "./buttonEvents/Claim";
|
|
|
|
import Reroll from "./buttonEvents/Reroll";
|
2023-08-19 16:56:22 +01:00
|
|
|
|
|
|
|
export default class Registry {
|
|
|
|
public static RegisterCommands() {
|
|
|
|
CoreClient.RegisterCommand('about', new About());
|
2023-09-03 20:27:29 +01:00
|
|
|
CoreClient.RegisterCommand('drop', new Drop());
|
2023-08-19 16:56:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static RegisterEvents() {
|
|
|
|
|
|
|
|
}
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
public static RegisterButtonEvents() {
|
|
|
|
CoreClient.RegisterButtonEvent('claim', new Claim());
|
|
|
|
CoreClient.RegisterButtonEvent('reroll', new Reroll());
|
|
|
|
}
|
2023-08-19 16:56:22 +01:00
|
|
|
}
|