2019-11-02 17:27:54 -05:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
import random
|
|
|
|
from direct.task import Task
|
|
|
|
from toontown.effects import DistributedFireworkShowAI
|
|
|
|
|
|
|
|
class HolidayBaseAI:
|
2024-07-14 15:28:28 -05:00
|
|
|
"""
|
|
|
|
Base class for all holidays
|
|
|
|
"""
|
2019-11-02 17:27:54 -05:00
|
|
|
|
|
|
|
def __init__(self, air, holidayId):
|
|
|
|
self.air = air
|
|
|
|
self.holidayId = holidayId
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
pass
|
2024-07-14 15:28:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
|