OpenAL Test

This commit is contained in:
Daniel
2016-05-30 11:04:09 +02:00
parent 33a61ca2ed
commit b53bcac528
17 changed files with 2622 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
#pragma once
class OpenAL
{
public:
int endWithError(char* msg, int error = 0);
OpenAL();
~OpenAL();
boolean Test();
};