mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
11 lines
361 B
Python
Executable file
11 lines
361 B
Python
Executable file
from direct.fsm.FSM import FSM
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
class BaseActivityFSM(FSM):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('BaseActivityFSM')
|
|
|
|
def __init__(self, activity):
|
|
FSM.__init__(self, self.__class__.__name__)
|
|
self.activity = activity
|
|
self.defaultTransitions = None
|
|
return
|