mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-27 05:32:41 -06:00
22 lines
513 B
Python
22 lines
513 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
|
||
|
class DistributedMMPianoAI(DistributedObjectAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedMMPianoAI")
|
||
|
|
||
|
def requestSpeedUp(self):
|
||
|
pass
|
||
|
|
||
|
def requestChangeDirection(self):
|
||
|
pass
|
||
|
|
||
|
def setSpeed(self, todo0, todo1, todo2):
|
||
|
pass
|
||
|
|
||
|
def playSpeedUp(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def playChangeDirection(self, todo0):
|
||
|
pass
|
||
|
|