misc/libopenalbridge/tester.c
author Xeli
Thu, 09 Feb 2012 14:12:50 +0100
changeset 6654 120e95c10532
parent 3697 d5b30d6373fc
permissions -rw-r--r--
use the way actions are initiated the same way as koda implemented with PascalExports, using boolean values such as upKey and enterKey, this prevents the user from being able to control the AI

#include <stdio.h>
#include "openalbridge.h"

int main (int argc, int **argv) {

    openal_init();

    openal_close();

    return 0;
}