mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
9 lines
302 B
Python
9 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
|