oldschool-toontown/toontown/coghq/DistributedCrusherEntity.py

13 lines
501 B
Python
Raw Normal View History

2019-11-02 17:27:54 -05:00
from otp.level import BasicEntities
from direct.directnotify import DirectNotifyGlobal
class DistributedCrusherEntity(BasicEntities.DistributedNodePathEntity):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedCrusherEntity')
def __init__(self, cr):
BasicEntities.DistributedNodePathEntity.__init__(self, cr)
def announceGenerate(self):
BasicEntities.DistributedNodePathEntity.announceGenerate(self)
self.crushMsg = self.getUniqueName('crushMsg')