Poodletooth-iLand/toontown/estate/DistributedHouseItem.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

28 lines
894 B
Python
Executable file

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)