historical/toontown-classic.git/toontown/building/DistributedAnimDoorAI.py

9 lines
458 B
Python
Raw Normal View History

2024-01-16 17:20:27 +00:00
from direct.directnotify import DirectNotifyGlobal
from toontown.building import DistributedDoorAI
class DistributedAnimDoorAI(DistributedDoorAI.DistributedDoorAI):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedAnimDoorAI')
def __init__(self, air, blockNumber, doorType, doorIndex = 0, lockValue = 0, swing = 3):
DistributedDoorAI.DistributedDoorAI.__init__(self, air, blockNumber, doorType, doorIndex, lockValue, swing)