added smaler mining area

This commit is contained in:
2023-05-06 19:26:02 +02:00
parent a9e25527f5
commit 2d46fd65b9
5 changed files with 17 additions and 7 deletions

View File

@@ -5,11 +5,14 @@ import tkinter as tk
class DiggingOverlay(threading.Thread):
def __init__(self):
def __init__(self, large_display=True):
threading.Thread.__init__(self)
self.root = tk.Tk
self.EnemyLabel = tk.Label
self.TkPosition = '1440x1150+570+22'
if large_display:
self.TkPosition = '1440x1150+570+22'
else:
self.TkPosition = '1440x210+560+700'
self.setDaemon(True)
self.start()