asteroid-game/game/android_api.cpp

11 lines
237 B
C++
Raw Permalink Normal View History

2017-01-10 13:08:41 +00:00
#include "android_api.h"
#include "main_code.h"
JNIEXPORT void JNICALL Java_fishrungames_asteroidgame_JniWrapper_Init(JNIEnv * env, jobject obj, jint width, jint height)
{
JniInitApp<TMyApplication>(width, height, 480.f, 320.f);
}