10 lines
295 B
Python
10 lines
295 B
Python
|
|
import argparse
|
|
from source.game import start_game
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser(prog='MBH', description='Morrowind with Blackjack and hookers', epilog='?')
|
|
parser.add_argument('-p', '--package', nargs='+')
|
|
args = parser.parse_args()
|
|
start_game(args.package)
|