Poodletooth-iLand/otp/level/LevelMgrBase.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

10 lines
225 B
Python
Executable file

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