mirror of
https://github.com/TotalFreedomMC/PlayerParticles.git
synced 2025-07-07 06:21:41 +00:00
Start CommandModules, Lang files
Still doesn't compile
This commit is contained in:
parent
25e7d22110
commit
febe2963d1
27 changed files with 1481 additions and 786 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue