2013-01-19 22:25:53 +00:00
|
|
|
#include "android_api.h"
|
|
|
|
|
|
|
|
#include "main_code.h"
|
|
|
|
|
2018-08-01 08:31:24 +00:00
|
|
|
JNIEXPORT void JNICALL Java_com_fishrungames_crystalofrhylil_JniWrapper_Init(JNIEnv * env, jobject obj, jint width, jint height)
|
2013-01-19 22:25:53 +00:00
|
|
|
{
|
2018-08-01 08:31:24 +00:00
|
|
|
JniInitApp<TMyApplication>(width, height, width, height);
|
2013-01-19 22:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|