Start CommandModules, Lang files

Still doesn't compile
This commit is contained in:
Esophose 2018-09-26 02:07:46 -06:00
parent 25e7d22110
commit febe2963d1
27 changed files with 1481 additions and 786 deletions

View file

@ -0,0 +1,34 @@
package com.esophose.playerparticles.command;
import java.util.List;
import com.esophose.playerparticles.manager.LangManager.Lang;
import com.esophose.playerparticles.particles.PPlayer;
public class DataCommandModule implements CommandModule {
public void onCommandExecute(PPlayer pplayer, String[] args) {
}
public List<String> onTabComplete(PPlayer pplayer, String[] args) {
return null;
}
public String getName() {
return "data";
}
public String getDescription() {
return Lang.DATA_COMMAND_DESCRIPTION.get();
}
public String getArguments() {
return "<args>";
}
public boolean requiresEffects() {
return true;
}
}