00001 #ifndef APPSTATE_H 00002 #define APPSTATE_H 00003 00004 00005 enum Tool { 00006 arrow, draw, text 00007 }; 00008 00010 struct AppState { 00011 00013 bool animate; 00014 00016 int frame; 00017 00019 Tool toolcurrent; 00020 }; 00021 00022 00023 00024 #endif