Poodletooth-iLand/otp/level/ZoneEntityBase.py

26 lines
544 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00: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