Actually start actions

This commit is contained in:
skippyall
2024-09-18 21:21:18 +02:00
parent d6a324a93f
commit 6526f92a67
8 changed files with 55 additions and 20 deletions
@@ -1,15 +1,10 @@
package io.github.skippyall.minions.command;
import io.github.skippyall.minions.fakeplayer.MinionFakePlayer;
import net.minecraft.item.Item;
import net.minecraft.network.packet.LoginPackets;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.text.Text;
public interface Command {
public interface Command extends CommandExecutor {
Text getName();
Text getDescription();
Item getItemRepresentation();
void onRun(ServerPlayerEntity player, MinionFakePlayer minion);
}