Poodletooth-iLand/toontown/estate/DistributedHouseItem.py

29 lines
894 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from toontown.toonbase.ToontownGlobals import *
from direct.interval.IntervalGlobal import *
from direct.distributed.ClockDelta import *
from toontown.toonbase import ToontownGlobals
from direct.distributed import DistributedObject
from toontown.toonbase import TTLocalizer
class DistributedHouseItem(DistributedObject.DistributedObject):
notify = directNotify.newCategory('DistributedHouseItem')
def __init__(self, cr):
DistributedObject.DistributedObject.__init__(self, cr)
def generate(self):
DistributedObject.DistributedObject.generate(self)
def announceGenerate(self):
DistributedObject.DistributedObject.announceGenerate(self)
self.load()
def load(self):
pass
def disable(self):
DistributedObject.DistributedObject.disable(self)
def delete(self):
DistributedObject.DistributedObject.delete(self)