mirror of
https://github.com/TotalFreedomMC/PlayerParticles.git
synced 2025-07-30 09:22:06 +00:00
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:
parent
3d2306e7bb
commit
a817341392
46 changed files with 1720 additions and 2139 deletions
15
src/com/esophose/playerparticles/command/CommandModule.java
Normal file
15
src/com/esophose/playerparticles/command/CommandModule.java
Normal 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();
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue