Set up ability to run commands from the terminal

This commit is contained in:
Andrew Miner
2025-10-06 20:57:46 -06:00
parent a8b6e6b15e
commit 4637137152
18 changed files with 231 additions and 49 deletions
+3 -2
View File
@@ -4,13 +4,14 @@ from tungston.core.world import World
# Constants ########################################################################################
INDENT = " "
INDENT = " "
# Class ############################################################################################
class Report:
def __init__(self, world:World):
def __init__(self, name:str, world:World):
self.name = name
self.world = world
self.reset()