mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
14 lines
243 B
Python
14 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
|