1
0
Files
aetheria-anarchy-plugin/src/main/java/cc/fascinated/account/command/DeleteAccountCommand.java
2024-04-05 20:30:29 +01:00

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) {
}
}