mirror of
https://github.com/TotalFreedomMC/PlayerParticles.git
synced 2025-08-07 13:03:11 +00:00
testing
This commit is contained in:
parent
80a4613725
commit
9567b06e23
147 changed files with 1811 additions and 1406 deletions
|
@ -0,0 +1,25 @@
|
|||
package dev.esophose.playerparticles.command;
|
||||
|
||||
import java.util.List;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
public interface CommandModuleSecondary {
|
||||
|
||||
/**
|
||||
* Called when this command gets executed
|
||||
*
|
||||
* @param sender The CommandSender who executed this command
|
||||
* @param args The arguments to this command
|
||||
*/
|
||||
void onCommandExecute(CommandSender sender, String[] args);
|
||||
|
||||
/**
|
||||
* Called when a player tries to tab complete this command
|
||||
*
|
||||
* @param sender The CommandSender who is tab completing this command
|
||||
* @param args Arguments typed so far
|
||||
* @return A list of possible argument values
|
||||
*/
|
||||
List<String> onTabComplete(CommandSender sender, String[] args);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue