17 lines
360 B
Java
17 lines
360 B
Java
package cc.fascinated.account.command;
|
|
|
|
import cc.fascinated.account.Account;
|
|
import cc.fascinated.command.Command;
|
|
|
|
public class DeleteAccountCommand extends Command {
|
|
|
|
public DeleteAccountCommand() {
|
|
super("deleteaccount", "aetheria.command.deleteaccount");
|
|
}
|
|
|
|
@Override
|
|
public void execute(Account account, String[] args) {
|
|
|
|
}
|
|
}
|