mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 04:02:40 -06:00
60 lines
1.3 KiB
Python
60 lines
1.3 KiB
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
class OtpAvatarManagerAI(DistributedObjectAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("OtpAvatarManagerAI")
|
|
|
|
def online(self):
|
|
pass
|
|
|
|
def requestAvatarList(self, todo0):
|
|
pass
|
|
|
|
def rejectAvatarList(self, todo0):
|
|
pass
|
|
|
|
def avatarListResponse(self, todo0):
|
|
pass
|
|
|
|
def requestAvatarSlot(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def rejectAvatarSlot(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def avatarSlotResponse(self, todo0, todo1):
|
|
pass
|
|
|
|
def requestPlayAvatar(self, todo0, todo1, todo2):
|
|
pass
|
|
|
|
def rejectPlayAvatar(self, todo0, todo1):
|
|
pass
|
|
|
|
def playAvatarResponse(self, todo0, todo1, todo2, todo3):
|
|
pass
|
|
|
|
def rejectCreateAvatar(self, todo0):
|
|
pass
|
|
|
|
def createAvatarResponse(self, todo0, todo1, todo2, todo3):
|
|
pass
|
|
|
|
def requestRemoveAvatar(self, todo0, todo1, todo2, todo3):
|
|
pass
|
|
|
|
def rejectRemoveAvatar(self, todo0):
|
|
pass
|
|
|
|
def removeAvatarResponse(self, todo0, todo1):
|
|
pass
|
|
|
|
def requestShareAvatar(self, todo0, todo1, todo2, todo3):
|
|
pass
|
|
|
|
def rejectShareAvatar(self, todo0):
|
|
pass
|
|
|
|
def shareAvatarResponse(self, todo0, todo1, todo2):
|
|
pass
|
|
|