Files
flippr-game/factories/NetworkFactory.py
Jonas Zeunert 7414734dad thiiiiings
2020-02-13 19:05:55 +01:00

7 lines
218 B
Python

from networking.Networking import Networking
class NetworkFactory:
@staticmethod
def createNetwork(output_server_address, input_server_address):
Networking(output_server_address, input_server_address)