oldschool-toontown/otp/level/LevelMgrBase.py

11 lines
232 B
Python
Raw Normal View History

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