Factions/src/com/massivecraft/factions/cmd/CmdFactionsPowerboost.java

24 lines
701 B
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
public class CmdFactionsPowerboost extends FactionsCommand
{
2015-05-06 17:04:35 +02:00
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
public CmdFactionsPowerboostPlayer cmdFactionsPowerBoostPlayer = new CmdFactionsPowerboostPlayer();
public CmdFactionsPowerboostFaction cmdFactionsPowerBoostFaction = new CmdFactionsPowerboostFaction();
2015-05-06 17:04:35 +02:00
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public CmdFactionsPowerboost()
{
2017-03-15 18:22:17 +01:00
// Child
this.addChild(this.cmdFactionsPowerBoostPlayer);
this.addChild(this.cmdFactionsPowerBoostFaction);
}
2013-11-11 09:31:04 +01:00
}