RetroArch/android/native/jni/android-general.h

26 lines
377 B
C
Raw Normal View History

#ifndef _ANDROID_GENERAL_H
#define _ANDROID_GENERAL_H
#include <android/sensor.h>
#include <android_native_app_glue.h>
#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