Started working on the Settings Panel

This commit is contained in:
Florian CUNY 2018-02-18 11:31:49 +01:00
parent f64dc0aaea
commit 43367300a4
2 changed files with 40 additions and 1 deletions

View File

@ -1,4 +1,36 @@
package us.tastybento.bskyblock.commands.island;
public class IslandSettingsCommand {
import us.tastybento.bskyblock.Constants;
import us.tastybento.bskyblock.api.commands.CompositeCommand;
import us.tastybento.bskyblock.api.commands.User;
import us.tastybento.bskyblock.commands.IslandCommand;
import java.util.List;
/**
* @author Poslovitch
*/
public class IslandSettingsCommand extends CompositeCommand {
public IslandSettingsCommand(IslandCommand islandCommand) {
super(islandCommand, "settings", "flags");
}
/* (non-Javadoc)
* @see us.tastybento.bskyblock.api.commands.CompositeCommand#setup()
*/
@Override
public void setup() {
setPermission(Constants.PERMPREFIX + "island.settings");
setOnlyPlayer(true);
setDescription("commands.island.settings.description");
}
/* (non-Javadoc)
* @see us.tastybento.bskyblock.api.commands.CommandArgument#execute(org.bukkit.command.CommandSender, java.lang.String[])
*/
@Override
public boolean execute(User user, List<String> args) {
return true;
}
}

View File

@ -0,0 +1,7 @@
package us.tastybento.bskyblock.panels;
/**
* @author Poslovitch
*/
public class SettingsPanel {
}