RetroArch/android/native/jni/android-general.h
twinaphex cd92520983 (Android) Don't poll accelerometer - no use yet and in case we
want to support something like GBA WarioWare Twisted stuff, we
will have to add motion support to libretro anyway - so can be
shelved for now
2012-10-31 17:33:08 +01:00

26 lines
377 B
C

#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