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

16 lines
339 B
Python

from direct.directnotify import DirectNotifyGlobal
import random
from direct.task import Task
from toontown.effects import DistributedFireworkShowAI
class HolidayBaseAI:
def __init__(self, air, holidayId):
self.air = air
self.holidayId = holidayId
def start(self):
pass
def stop(self):
pass