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

24 lines
701 B
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
2014-09-18 13:41:20 +02:00
public class CmdFactionsPowerBoost extends FactionsCommand
{
2015-05-06 17:04:35 +02:00
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
2017-03-15 18:22:17 +01:00
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
// -------------------------------------------- //
2013-04-10 13:12:22 +02:00
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
}