This commit is contained in:
2023-12-23 13:25:41 +01:00
parent 840bc96eb3
commit ea8ad12c50

View File

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