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