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