oldschool-toontown/toontown/building/DistributedTrophyMgrAI.py
2019-12-05 23:10:13 -05:00

22 lines
613 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
class DistributedTrophyMgrAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrophyMgrAI')
def __init__(self, air):
DistributedObjectAI.__init__(self, air)
self.leaderInfo = ([], [], [])
def requestTrophyScore(self):
pass
def getLeaderInfo(self):
return self.leaderInfo
def addTrophy(self, avId, name, numFloors):
pass
def removeTrophy(self, avId, numFloors):
pass # TODO