historical/toontown-classic.git/toontown/cogdominium/DistributedCogdoBattleBldgAI.py
2024-01-16 11:20:27 -06:00

8 lines
528 B
Python

from direct.directnotify import DirectNotifyGlobal
from toontown.battle import DistributedBattleBldgAI
class DistributedCogdoBattleBldgAI(DistributedBattleBldgAI.DistributedBattleBldgAI):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedCogdoBattleBldgAI')
def __init__(self, air, zoneId, roundCallback = None, finishCallback = None, maxSuits = 4, bossBattle = 0):
DistributedBattleBldgAI.DistributedBattleBldgAI.__init__(self, air, zoneId, roundCallback, finishCallback, maxSuits, bossBattle)