mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
21 lines
527 B
Python
21 lines
527 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from toontown.effects.DistributedFireworkShowAI import DistributedFireworkShowAI
|
||
|
|
||
|
class DistributedFireworksCannonAI(DistributedFireworkShowAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedFireworksCannonAI")
|
||
|
|
||
|
def avatarEnter(self):
|
||
|
pass
|
||
|
|
||
|
def avatarExit(self):
|
||
|
pass
|
||
|
|
||
|
def freeAvatar(self):
|
||
|
pass
|
||
|
|
||
|
def setMovie(self, todo0, todo1, todo2):
|
||
|
pass
|
||
|
|
||
|
def setPosition(self, todo0, todo1, todo2):
|
||
|
pass
|