7 lines
181 B
Python
7 lines
181 B
Python
class HolidayManagerAI:
|
|
def __init__(self, air):
|
|
self.air = air
|
|
self.currentHolidays = {}
|
|
|
|
def isHolidayRunning(self, holidayId):
|
|
return False # NO
|