9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
|
import { Command } from "../../../src/type/command";
|
||
|
|
||
|
export default class normal extends Command {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this._category = "General";
|
||
|
}
|
||
|
}
|