RuneHive-Game
Loading...
Searching...
No Matches
BotObjective.java
Go to the documentation of this file.
1package com.runehive.content.bot.objective;
2
3import com.runehive.content.bot.PlayerBot;
4import com.runehive.content.bot.objective.impl.*;
5
6public enum BotObjective implements BotObjectiveListener {
12
14
18
19 @Override
20 public void init(PlayerBot bot) {
21 listener.init(bot);
22 }
23
24 @Override
25 public void finish(PlayerBot bot) {
26 listener.finish(bot);
27 }
28
29}
BotObjective(BotObjectiveListener listener)