oldschool-toontown/toontown/ai/NewsManagerAI.py
2019-11-17 16:57:18 -05:00

20 lines
542 B
Python

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
class NewsManagerAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory('NewsManagerAI')
def getWeeklyCalendarHolidays(self):
return []
def getYearlyCalendarHolidays(self):
return []
def getOncelyCalendarHolidays(self):
return []
def getRelativelyCalendarHolidays(self):
return []
def getMultipleStartHolidays(self):
return []