22 lines
753 B
Java
22 lines
753 B
Java
package net.knarcraft.factions.cmd;
|
|
|
|
public class CmdFactionsPowerboost extends FactionsCommand {
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
public final CmdFactionsPowerboostPlayer cmdFactionsPowerBoostPlayer = new CmdFactionsPowerboostPlayer();
|
|
public final CmdFactionsPowerboostFaction cmdFactionsPowerBoostFaction = new CmdFactionsPowerboostFaction();
|
|
|
|
// -------------------------------------------- //
|
|
// CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public CmdFactionsPowerboost() {
|
|
// Child
|
|
this.addChild(this.cmdFactionsPowerBoostPlayer);
|
|
this.addChild(this.cmdFactionsPowerBoostFaction);
|
|
}
|
|
|
|
}
|