mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
15 lines
527 B
Python
15 lines
527 B
Python
|
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)
|