*** empty log message ***

This commit is contained in:
Mike Goslin 2000-12-06 18:54:28 +00:00
parent 0cb53b8d5b
commit aae1dbd84d

View File

@ -35,6 +35,9 @@ class FSM(DirectObject):
# Enter the initial state.
# It is assumed that the initial state takes no arguments.
self.__currentState = self.__initialState
#self.__enter(self.__initialState)
def enterInitialState(self):
self.__enter(self.__initialState)
def __str__(self):