#ifndef _ANDROID_GENERAL_H #define _ANDROID_GENERAL_H #include #include #include "../../../boolean.h" struct saved_state { float angle; int32_t x; int32_t y; }; struct droid { struct android_app* app; bool init_quit; bool window_inited; struct saved_state state; }; extern struct droid g_android; #endif