1# ORIGINAL CREATOR: Luca Garofalo (Lucksi) 2# AUTHOR: Luca Garofalo (Lucksi) 3# Copyright (C) 2021-2023 Lucksi <[email protected]> 4# License: GNU General Public License v3.0 5 6import os 7 8Windows = "nt" 9 10 11class Screen: 12 13 def Clear(): 14 os.system("cls" if os.name == Windows else "clear") 15 16