Poodletooth-iLand/toontown/estate/DistributedToonStatuaryAI.py

16 lines
497 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from direct.directnotify import DirectNotifyGlobal
from toontown.estate.DistributedStatuaryAI import DistributedStatuaryAI
class DistributedToonStatuaryAI(DistributedStatuaryAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedToonStatuaryAI")
2015-05-24 23:23:54 +00:00
def __init__(self, air):
DistributedStatuaryAI.__init__(self, air)
2015-05-10 12:10:32 +00:00
self.air = air
2015-05-24 23:23:54 +00:00
def setOptional(self, optional):
self.optional = optional
def getOptional(self):
return self.optional