2019-11-09 04:55:55 +00:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
|
|
|
|
class DistributedTrophyMgrAI(DistributedObjectAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrophyMgrAI')
|
2019-11-23 01:58:35 +00:00
|
|
|
|
|
|
|
def requestTrophyScore(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def getLeaderInfo(self):
|
|
|
|
return [], [], []
|
|
|
|
|
|
|
|
def addTrophy(self, *args, **kwargs):
|
|
|
|
pass
|