historical/toontown-classic.git/otp/avatar/PlayerBase.py
2024-01-16 11:20:27 -06: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