misc/libopenalbridge/tester.c
author Medo <smaxein@googlemail.com>
Sat, 09 Jun 2012 03:28:38 +0200
changeset 7179 f84805e6df03
parent 3697 d5b30d6373fc
permissions -rw-r--r--
Implemented game launching API for the frontlib. It is still buggy though, and not all game settings can be conveniently created/modified yet.

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

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

    openal_init();

    openal_close();

    return 0;
}