13 lines
463 B
Python
13 lines
463 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectGlobal import DistributedObjectGlobal
|
|
|
|
|
|
class ToontownFriendsManager(DistributedObjectGlobal):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownFriendsManager')
|
|
|
|
def sendGetFriendsListRequest(self):
|
|
self.sendUpdate('getFriendsListRequest')
|
|
|
|
def getFriendsListResponse(self, friendsList):
|
|
self.cr.handleGetFriendsList(friendsList)
|