2015-01-09 22:36:12 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
|
|
|
public class CmdFactionsPerm extends FactionsCommand
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList();
|
|
|
|
CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow();
|
|
|
|
CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet();
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public CmdFactionsPerm()
|
|
|
|
{
|
2015-10-21 19:35:41 +02:00
|
|
|
// Children
|
|
|
|
this.addChild(this.cmdFactionsPermList);
|
|
|
|
this.addChild(this.cmdFactionsPermShow);
|
|
|
|
this.addChild(this.cmdFactionsPermSet);
|
2015-01-09 22:36:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|