historical/toontown-classic.git/otp/distributed/DistributedDistrictAI.py
2024-01-16 11:20:27 -06:00

37 lines
1,002 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
class DistributedDistrictAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedDistrictAI')
def __init__(self, air):
DistributedObjectAI.__init__(self, air)
self.name = None
self.available = False
def setName(self, name):
self.name = name
def d_setName(self, name):
self.sendUpdate('setName', [name])
def b_setName(self, name):
self.setName(name)
self.d_setName(name)
def getName(self):
return self.name
def setAvailable(self, available):
self.available = available
def d_setAvilable(self, available):
self.sendUpdate('setAvailable', [available])
def b_setAvailable(self, available):
self.setAvailable(available)
self.d_setAvilable(available)
def getAvailable(self):
return self.available