2023-09-10 12:59:22 +01:00
|
|
|
import ICommand from "../interfaces/ICommand";
|
|
|
|
import Channel from "../objects/Channel";
|
|
|
|
import Shared from "../objects/Shared";
|
|
|
|
import User from "../objects/User";
|
2023-08-20 13:03:01 +01:00
|
|
|
|
2023-09-10 12:59:22 +01:00
|
|
|
export default class BaseCommand implements ICommand {
|
2023-08-20 13:03:01 +01:00
|
|
|
public shared:Shared;
|
|
|
|
public readonly helpText:string = "No help page was found for that command";
|
|
|
|
public readonly helpDescription:string = "Command has no description set";
|
|
|
|
public readonly helpArguments:Array<string> = new Array<string>();
|
|
|
|
|
|
|
|
public constructor(shared:Shared) {
|
|
|
|
this.shared = shared;
|
|
|
|
}
|
|
|
|
|
|
|
|
public exec(channel:Channel, sender:User, args:Array<string>) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|