Updated OpenAL to version 1.16.0

This commit is contained in:
fysx
2015-11-29 15:27:32 +01:00
parent 8308a524bc
commit ec5f068b19
149 changed files with 16 additions and 18 deletions
@@ -0,0 +1,11 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}