mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
35b646c4e6
This reverts commit 1e4bad8c6b
.
24 lines
548 B
Python
Executable file
24 lines
548 B
Python
Executable file
from direct.directnotify import DirectNotifyGlobal
|
|
from otp.level.DistributedEntityAI import DistributedEntityAI
|
|
|
|
class DistributedInteractiveEntityAI(DistributedEntityAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedInteractiveEntityAI")
|
|
|
|
def setAvatarInteract(self, todo0):
|
|
pass
|
|
|
|
def requestInteract(self):
|
|
pass
|
|
|
|
def rejectInteract(self):
|
|
pass
|
|
|
|
def requestExit(self):
|
|
pass
|
|
|
|
def avatarExit(self, todo0):
|
|
pass
|
|
|
|
def setState(self, todo0, todo1):
|
|
pass
|
|
|