2019-11-08 22:55:55 -06:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
|
|
|
|
class NewsManagerAI(DistributedObjectAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('NewsManagerAI')
|
2019-11-17 15:57:18 -06:00
|
|
|
|
|
|
|
def getWeeklyCalendarHolidays(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def getYearlyCalendarHolidays(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def getOncelyCalendarHolidays(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def getRelativelyCalendarHolidays(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def getMultipleStartHolidays(self):
|
|
|
|
return []
|