Skip to content

Instantly share code, notes, and snippets.

@ttencate
Created September 12, 2017 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ttencate/681431d36450f5dc8f284d8e287c233b to your computer and use it in GitHub Desktop.
Save ttencate/681431d36450f5dc8f284d8e287c233b to your computer and use it in GitHub Desktop.
typedef enum{
response,
animation,
idle,
load
} phase_state;
struct AI_gov_info{
phase_state phase;
phase_state prev_phase;
};
int main() {
struct AI_gov_info foo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment