toontown-just-works/otp/level/LevelMgrBase.py

11 lines
225 B
Python
Raw Normal View History

2024-07-07 18:08:39 -05:00
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()