Package me.efekos.simpler.commands.node
Interface CommandExecutive
public interface CommandExecutive
Main interface used by
CommandNode
s as 'a method to run when someone executes me'.-
Method Summary
Modifier and TypeMethodDescriptionvoid
onExecute
(CommandExecuteContext context) Runs when aCommandNode
that has this executive gets executed.
-
Method Details
-
onExecute
Runs when aCommandNode
that has this executive gets executed.- Parameters:
context
- Context of the command run event. All the information is fromCommand.execute(CommandSender, String, String[])
.
-