mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
12 lines
361 B
Python
12 lines
361 B
Python
|
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
|