2017-03-15 18:22:17 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.cmd.type.TypeMPlayer;
|
|
|
|
|
2019-02-17 14:30:25 +01:00
|
|
|
public abstract class CmdFactionsPowerboostPlayerAbstract extends CmdFactionsPowerboostAbstract
|
2017-03-15 18:22:17 +01:00
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
2019-02-17 14:30:25 +01:00
|
|
|
|
|
|
|
public CmdFactionsPowerboostPlayerAbstract()
|
2017-03-15 18:22:17 +01:00
|
|
|
{
|
|
|
|
super(TypeMPlayer.get(), "player");
|
|
|
|
}
|
2019-02-17 14:30:25 +01:00
|
|
|
|
2017-03-15 18:22:17 +01:00
|
|
|
}
|