oldschool-toontown/toontown/ai/HolidayBaseAI.py

23 lines
398 B
Python
Raw Normal View History

2019-11-02 22:27:54 +00:00
from direct.directnotify import DirectNotifyGlobal
import random
from direct.task import Task
from toontown.effects import DistributedFireworkShowAI
class HolidayBaseAI:
"""
Base class for all holidays
"""
2019-11-02 22:27:54 +00:00
def __init__(self, air, holidayId):
self.air = air
self.holidayId = holidayId
def start(self):
pass
def stop(self):
pass