2013-01-23 20:14:11 +00:00
|
|
|
#include "android_api.h"
|
|
|
|
|
2013-02-08 06:23:20 +00:00
|
|
|
#include "boost/thread.hpp"
|
2013-01-23 20:14:11 +00:00
|
|
|
|
2013-02-08 06:23:20 +00:00
|
|
|
#include "main_code.h"
|
2013-01-23 20:14:11 +00:00
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_fishrungames_salmonjnitemplate_JniWrapper_Init(JNIEnv * env, jobject obj, jint width, jint height)
|
|
|
|
{
|
|
|
|
|
2013-02-08 06:23:20 +00:00
|
|
|
JniInitApp<TMyApplication>(width, height, 320.f, 480.f);
|
2013-01-23 20:14:11 +00:00
|
|
|
}
|
|
|
|
|