Poodletooth-iLand/otp/level/ZoneEntityBase.py

26 lines
544 B
Python
Raw Normal View History

2015-11-14 13:28:53 -06:00
import Entity
import LevelConstants
class ZoneEntityBase(Entity.Entity):
def __init__(self, level, entId):
Entity.Entity.__init__(self, level, entId)
self.zoneId = None
return
def destroy(self):
del self.zoneId
Entity.Entity.destroy(self)
def isUberZone(self):
return self.entId == LevelConstants.UberZoneEntId
def setZoneId(self, zoneId):
self.zoneId = zoneId
def getZoneId(self):
return self.zoneId
def getZoneNum(self):
return self.entId