historical/toontown-classic.git/otp/level/LevelMgrBase.py
2024-01-16 11:20:27 -06:00

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