Wowxel/core/MainAgent.py
2024-09-05 00:47:18 -04:00

14 lines
309 B
Python

from core.Monitor import Monitor
from bots.fishing.FishingAgent import FishingAgent
class MainAgent:
def __init__(self) -> None:
self.monitor = Monitor()
self.fishingBot = FishingAgent(self.monitor)
def startFishBot(self):
self.monitor.startScreenCaptureThread()
self.fishingBot.run()