5 lines
110 B
Python
5 lines
110 B
Python
|
class HolidayManagerAI:
|
||
|
def __init__(self, air):
|
||
|
self.air = air
|
||
|
self.currentHolidays = {}
|