mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
19 lines
288 B
Python
19 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
|