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

14 lines
527 B
Python
Executable file

from direct.distributed import DistributedObjectUD
from direct.directnotify import DirectNotifyGlobal
class GroupManagerUD(DistributedObjectUD.DistributedObjectUD):
notify = DirectNotifyGlobal.directNotify.newCategory('GroupManagerUD')
def __init__(self, air):
DistributedObjectUD.DistributedObjectUD.__init__(self, air)
def announceGenerate(self):
DistributedObjectUD.DistributedObjectUD.announceGenerate(self)
def delete(self):
DistributedObjectUD.DistributedObjectUD.delete(self)