mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
13 lines
243 B
Python
13 lines
243 B
Python
from direct.directnotify.DirectNotifyGlobal import *
|
|
|
|
|
|
class HolidayBaseAI:
|
|
def __init__(self, air, holidayId):
|
|
self.air = air
|
|
self.holidayId = holidayId
|
|
|
|
def start(self):
|
|
pass
|
|
|
|
def stop(self):
|
|
pass
|