2019-12-30 00:00:16 -06:00
|
|
|
from . import Entity
|
2019-11-02 17:27:54 -05:00
|
|
|
|
|
|
|
class LevelMgrBase(Entity.Entity):
|
|
|
|
|
|
|
|
def __init__(self, level, entId):
|
|
|
|
Entity.Entity.__init__(self, level, entId)
|
|
|
|
|
|
|
|
def destroy(self):
|
|
|
|
Entity.Entity.destroy(self)
|
|
|
|
self.ignoreAll()
|