Exemplo n.º 1
0
/*
 * Class:     DoomGame
 * Method:    getEpisodeStartTime
 * Signature: ()I
 */
JNIEXPORT jint JNICALL Java_vizdoom_DoomGame_getEpisodeStartTime
  (JNIEnv *env, jobject obj){
    DoomGame* game = GetObject(env,obj);
    int ret = game->getEpisodeStartTime();
    return (jint) ret;
}