RuneHive-Game
Loading...
Searching...
No Matches
BotObjectiveListener.java
Go to the documentation of this file.
1
package
com.runehive.content.bot.objective;
2
3
import
com.runehive.content.bot.PlayerBot;
4
5
public
interface
BotObjectiveListener
{
6
7
void
init
(
PlayerBot
bot
);
8
9
void
finish
(
PlayerBot
bot
);
10
11
}
com.runehive.content.bot.PlayerBot
The player bot entity.
Definition
PlayerBot.java:29
com.runehive.content.bot.objective.BotObjectiveListener
Definition
BotObjectiveListener.java:5
com.runehive.content.bot.objective.BotObjectiveListener.init
void init(PlayerBot bot)
com.runehive.content.bot.objective.BotObjectiveListener.finish
void finish(PlayerBot bot)
com.runehive.content.bot