added clipcascade

This commit is contained in:
liph
2026-07-23 16:48:58 +02:00
parent 90e44adbae
commit cba86d9dce
31 changed files with 6406 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
class MessageBox:
def askquestion(self, title, message):
response = input(f"{title}\n{message} (y/n): ").strip().lower()
return "yes" if (response.lower().strip() == "y") else "no"