Added game system. [G]ames are available in the Utilities menu. The readme was updated. A gamefile syntax readme was added.

This commit is contained in:
Jonathan Hite 2025-02-06 22:33:14 -05:00
parent 27279577dd
commit 73fd2d67f4
11 changed files with 537 additions and 106 deletions

10
text.py Normal file
View file

@ -0,0 +1,10 @@
import os
print("Current Working Directory:", os.getcwd())
file_path = "./games/lost_forest.csv"
if os.path.exists(file_path):
print("✅ File exists! Python can detect it.")
else:
print("❌ File does NOT exist according to Python.")