oldschool-toontown/toontown/building/DistributedTrophyMgrAI.py

23 lines
613 B
Python
Raw Normal View History

2019-11-09 04:55:55 +00:00
from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
2019-12-06 02:45:22 +00:00
2019-11-09 04:55:55 +00:00
class DistributedTrophyMgrAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrophyMgrAI')
2019-11-23 01:58:35 +00:00
2019-12-06 04:10:13 +00:00
def __init__(self, air):
DistributedObjectAI.__init__(self, air)
self.leaderInfo = ([], [], [])
2019-11-23 01:58:35 +00:00
def requestTrophyScore(self):
pass
def getLeaderInfo(self):
2019-12-06 04:10:13 +00:00
return self.leaderInfo
2019-11-23 01:58:35 +00:00
2019-12-06 04:10:13 +00:00
def addTrophy(self, avId, name, numFloors):
2019-11-23 01:58:35 +00:00
pass
2019-12-06 02:45:22 +00:00
def removeTrophy(self, avId, numFloors):
pass # TODO