Files
flippr-game/factories/NetworkFactory.py
2021-03-07 16:24:04 +01:00

7 lines
225 B
Python

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