oldschool-toontown/toontown/ai/HolidayBaseAI.py
2019-11-02 18:27:54 -04: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