mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
11 lines
225 B
Python
11 lines
225 B
Python
|
import Entity
|
||
|
|
||
|
class LevelMgrBase(Entity.Entity):
|
||
|
|
||
|
def __init__(self, level, entId):
|
||
|
Entity.Entity.__init__(self, level, entId)
|
||
|
|
||
|
def destroy(self):
|
||
|
Entity.Entity.destroy(self)
|
||
|
self.ignoreAll()
|