FSM/vscode/FSM_OOP/childtest/parentFSM.h

16 lines
275 B
C
Raw Normal View History

2024-01-30 15:50:34 +08:00
#ifndef __PARENT_FSM_H_
#define __PARENT_FSM_H_
#define ParentFSM_Input(pFSM) ((ParentFSMData *)_preloadIn((FSM *)pFSM))
2024-01-30 15:50:34 +08:00
typedef struct _parentFSMData
{
int arrindex;
}ParentFSMData;
typedef struct _ParentFSM ParentFSM;
ParentFSM *createParentFSM();
#endif