mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
35b646c4e6
This reverts commit 1e4bad8c6b
.
21 lines
670 B
Python
Executable file
21 lines
670 B
Python
Executable file
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.parties.DistributedPartyTeamActivityAI import DistributedPartyTeamActivityAI
|
|
|
|
class DistributedPartyCogActivityAI(DistributedPartyTeamActivityAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPartyCogActivityAI")
|
|
|
|
def pieThrow(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6):
|
|
pass
|
|
|
|
def pieHitsToon(self, todo0, todo1, todo2, todo3, todo4):
|
|
pass
|
|
|
|
def pieHitsCog(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6, todo7):
|
|
pass
|
|
|
|
def setCogDistances(self, todo0):
|
|
pass
|
|
|
|
def setHighScore(self, todo0, todo1):
|
|
pass
|
|
|