mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
21 lines
750 B
Python
21 lines
750 B
Python
from pandac.PandaModules import *
|
|
from direct.distributed import DistributedObject
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
class DeleteManager(DistributedObject.DistributedObject):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DeleteManager')
|
|
neverDisable = 1
|
|
|
|
def __init__(self, cr):
|
|
DistributedObject.DistributedObject.__init__(self, cr)
|
|
|
|
def generate(self):
|
|
DistributedObject.DistributedObject.generate(self)
|
|
self.accept('deleteItems', self.d_setInventory)
|
|
|
|
def disable(self):
|
|
self.ignore('deleteItems')
|
|
DistributedObject.DistributedObject.disable(self)
|
|
|
|
def d_setInventory(self, newInventoryString):
|
|
self.sendUpdate('setInventory', [newInventoryString])
|