This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
texty/__main__.py
2022-01-25 17:16:07 +01:00

17 lines
338 B
Python

from sys import argv
from lib.game import *
from colorama import init
def main():
init()
if len(argv)<2:
print("You need to specify a path to a YAML file")
exit(1)
else:
game = load(argv[1])
if(game is None):
exit(1)
game.print_text()
if __name__ == "__main__":
main()