Files
Whiskerbound/systems/ui.py

11 lines
141 B
Python

import os
def clear():
os.system("cls" if os.name == "nt" else "clear")
def title():
clear()
print("=== Whiskerbound ===\n")