Poodletooth-iLand/otp/avatar/PlayerBase.py
2015-03-03 17:10:12 -05:00

18 lines
288 B
Python

class PlayerBase:
def __init__(self):
self.gmState = False
def atLocation(self, locationId):
return True
def getLocation(self):
return []
def setAsGM(self, state):
self.gmState = state
def isGM(self):
return self.gmState