mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-08-12 16:35:27 -04:00
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:
parent
27279577dd
commit
73fd2d67f4
11 changed files with 537 additions and 106 deletions
10
text.py
Normal file
10
text.py
Normal 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.")
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue