1package com.osroyale.content.bot.botclass;
3import com.osroyale.content.bot.PlayerBot;
4import com.osroyale.game.world.entity.mob.player.Player;
5import com.osroyale.game.world.items.Item;
7public interface BotClass {
15 void initCombat(Player target, PlayerBot bot);
17 void handleCombat(Player target, PlayerBot bot);
19 void endFight(PlayerBot bot);
21 void pot(Player target, PlayerBot bot);
23 void eat(Player target, PlayerBot bot);