open-toontown/toontown/ai/HolidayBaseAI.py

16 lines
238 B
Python

class HolidayBaseAI:
"""
Base class for all holidays
"""
def __init__(self, air, holidayId):
self.air = air
self.holidayId = holidayId
def start(self):
pass
def stop(self):
pass