tunnel/game/android_api.h

24 lines
403 B
C
Raw Normal View History

2017-01-17 11:43:00 +00:00
#ifndef ANDROID_API_H_INCLUDED
#define ANDROID_API_H_INCLUDED
#include <jni.h>
#include <android/log.h>
#include <GLES/gl.h>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include "boost/shared_ptr.hpp"
#include "main_code.h"
using namespace SE;
extern "C" {
JNIEXPORT void JNICALL Java_fishrungames_tunnel_JniWrapper_Init(JNIEnv * env, jobject obj, jint width, jint height);
};
#endif