oldschool-toontown/otp/avatar/PlayerBase.py
2019-11-02 18:27:54 -04: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