You are on page 1of 1

W:\_ME218bTeams\DoYouEvenStateMachine_Team17\ME218B\Final Project\CODE\Headers\PlayingGameSM.

h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

Page 1

/****************************************************************************
Header File
PlayingGameSM.h
Author
Anne Alter

Date
2/14/16
****************************************************************************/

#ifndef PlayingGameSM_H
#define PlayingGameSM_H

#include "ES_Types.h"
#include "ES_Configure.h"

//type defines
typedef enum{DriveAlongTrail, CaptureCity, SearchingForTrail, SlingingMud, BumperTurnAround}
CurrentPlayingGameState_t;
//public function prototypes
ES_Event RunPlayingGameSM(ES_Event CurrentEvent);
void StartPlayingGameSM(ES_Event CurrentEvent);
CurrentPlayingGameState_t QueryPlayingGameSM(void);
#endif /* PlayingGameSM_H */

You might also like