mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
16 lines
458 B
Python
16 lines
458 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectGlobalAI import DistributedObjectGlobalAI
|
||
|
|
||
|
class DistributedInGameNewsMgrAI(DistributedObjectGlobalAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedInGameNewsMgrAI")
|
||
|
|
||
|
def setLatestIssueStr(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def inGameNewsMgrAIStartingUp(self, todo0, todo1):
|
||
|
pass
|
||
|
|
||
|
def newIssueUDtoAI(self, todo0):
|
||
|
pass
|
||
|
|