thiiiiings

This commit is contained in:
Jonas Zeunert
2020-02-13 19:05:55 +01:00
parent 82f1ad6ed8
commit 7414734dad
719 changed files with 41551 additions and 227 deletions

19
__main__.py Normal file
View File

@@ -0,0 +1,19 @@
from factories.NetworkFactory import NetworkFactory
from factories.GameFactory import GameFactory
def main():
args = parseCommandLine()
game = createGame(args)
game.run()
def parseCommandLine():
return
def createGame(args):
NetworkFactory.createNetwork(args['OutputServerAddress'], args['InputServerAddress'])
gameFactory = GameFactory()
game = gameFactory.createGame()
return game
if __name__ == '__main__':
main()