15 lines
624 B
Java
15 lines
624 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
public class CmdFactionsPerm extends FactionsCommand {
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
final CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList();
|
|
final CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow();
|
|
final CmdFactionsPermView cmdFactionsPermView = new CmdFactionsPermView();
|
|
final CmdFactionsPermViewall cmdFactionsPermViewall = new CmdFactionsPermViewall();
|
|
final CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet();
|
|
|
|
}
|