Poodletooth-iLand/otp/distributed/ObjectServer.py
2015-03-03 17:10:12 -05:00

11 lines
378 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed import DistributedObject
class ObjectServer(DistributedObject.DistributedObject):
notify = DirectNotifyGlobal.directNotify.newCategory('ObjectServer')
def __init__(self, cr):
DistributedObject.DistributedObject.__init__(self, cr)
def setName(self, name):
self.name = name