mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
10 lines
302 B
Python
10 lines
302 B
Python
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||
|
|
||
|
|
||
|
class CentralLoggerUD(DistributedObjectUD):
|
||
|
def sendMessage(self, category, description, sender, receiver):
|
||
|
self.air.writeServerEvent(category, sender, receiver, description)
|
||
|
|
||
|
def logAIGarbage(self):
|
||
|
pass
|