initial push

This commit is contained in:
2025-02-13 14:51:35 -05:00
commit 59caad4c74
19 changed files with 4104 additions and 0 deletions

15
constructors.py Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env python3.12
"""
AI
"""
class AIException(Exception):
"""AI Exception (generic)"""
pass
"""
LoveHate
"""
class LoveHateException(Exception):
"""Love Hate Exception (generic)"""
pass