Added debuglevel-based console-output

This commit is contained in:
2023-12-23 16:56:08 +01:00
parent ea8ad12c50
commit b8a8262a68
3 changed files with 18 additions and 11 deletions

View File

@@ -9,9 +9,10 @@ import subprocess
def __main__():
#label = subprocess.check_output(["git", "describe"]).strip()
def get_git_revision_hash():
return subprocess.check_output(['git', 'rev-parse', 'HEAD'])
return subprocess.check_output(['git', 'rev-parse', 'HEAD'])
game = Game.game()
game.setDebugMode(3)
game.run()
return 0