Add routine for hunter mark first step

This commit is contained in:
2024-09-28 14:40:11 -04:00
parent da1ba01120
commit fe2d532dc1
5 changed files with 33 additions and 5 deletions
+10 -1
View File
@@ -1,4 +1,13 @@
from bots.components.spell import Spell
class Routine:
def __init__(self, monitor, player) -> None:
self.player = player
self.monitor = monitor
self.monitor = monitor
self.arcaneShotSpell = Spell(monitor, "hunter/general/ArcaneShot.jpg")
def hasTarget(self):
pass
def start(self):
print("Starting fight routine")