misc/libopenalbridge/tester.c
author koda
Tue, 25 Dec 2012 01:13:07 +0100
changeset 8327 a6f3452f5f94
parent 3697 d5b30d6373fc
permissions -rw-r--r--
convert Game() library call to argc,argv format so that we can use the new parsing functions

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

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

    openal_init();

    openal_close();

    return 0;
}