mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
15 lines
386 B
Python
15 lines
386 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
# TODO: OTP should not depend on Toontown... Hrrm.
|
||
|
from toontown.chat.TTWhiteList import TTWhiteList
|
||
|
|
||
|
class ChatAgentAI:
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("ChatAgentAI")
|
||
|
|
||
|
def announceGenerate(self):
|
||
|
pass
|
||
|
|
||
|
def chatMessage(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def setWhiteList(self, todo0):
|
||
|
pass
|