11 lines
143 B
C
11 lines
143 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef ANDROID
|
||
|
#include <jni.h>
|
||
|
|
||
|
JNIEnv* Android_JNI_GetEnv(void);
|
||
|
|
||
|
extern jobject g_Activity;
|
||
|
extern jobject g_GLThread;
|
||
|
|
||
|
#endif
|