Created
September 12, 2017 10:05
-
-
Save ttencate/681431d36450f5dc8f284d8e287c233b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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