Made it compatible with windows.

This commit is contained in:
The Wobbler 2023-10-31 13:06:38 +01:00
commit c1970033f0

View file

@ -18,7 +18,10 @@ yeet_dist = None
def clear():
os.system("clear")
if os.name == "nt":
os.system("cls")
else:
os.system("clear")
def on_press(key):