oldschool-toontown/otp/level/LevelMgrBase.py
2019-12-30 01:00:16 -05:00

10 lines
232 B
Python

from . 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()