Rewriting entire backend, several commands, and part of GUI

This commit was long overdue. I'm rewriting the entire backend, changing the functionality of a few core commands, adding a new command manager, and rewriting a portion of the GUI to handle the new data structure.
This commit is contained in:
Esophose 2018-09-23 20:42:52 -06:00
parent 3d2306e7bb
commit a817341392
46 changed files with 1720 additions and 2139 deletions

View file

@ -0,0 +1,15 @@
package com.esophose.playerparticles.command;
import com.esophose.playerparticles.particles.PPlayer;
public interface CommandModule {
public void onCommandExecute(PPlayer pplayer, String[] args);
public void onTabComplete(PPlayer pplayer, String[] args);
public String getName();
public String getArguments();
}