1
0
This commit is contained in:
Lee
2024-04-05 20:30:29 +01:00
parent 4e4e122f31
commit 0d329cfead
15 changed files with 244 additions and 61 deletions

View File

@ -0,0 +1,16 @@
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) {
}
}