Added an update function to client
This commit is contained in:
parent
1aa7491624
commit
178163420a
@ -13,6 +13,10 @@ class client(object):
|
||||
def run(self):
|
||||
self.running = True
|
||||
while self.running:
|
||||
self.update()
|
||||
time.sleep(0.001)
|
||||
|
||||
def update(self):
|
||||
event = self.host.service(0)
|
||||
if event.type == enet.EVENT_TYPE_CONNECT:
|
||||
if hasattr(self, "connected"):
|
||||
@ -24,7 +28,6 @@ class client(object):
|
||||
data = event.packet.data
|
||||
data_dict = json.loads(data)
|
||||
self.network(event, data_dict)
|
||||
time.sleep(0.001)
|
||||
|
||||
def send_data(self, channel, data, reliable=True):
|
||||
data_str = json.dumps(data, ensure_ascii=False)
|
||||
|
Loading…
Reference in New Issue
Block a user