collisionz

This commit is contained in:
Adam
2014-03-12 21:30:09 +01:00
parent 5ce795be96
commit 4459f671d5
5 changed files with 62 additions and 14 deletions
+3 -5
View File
@@ -6,9 +6,7 @@
#include "Components/SoundEmitter.h"
#include <AL/al.h>
#include <AL/alc.h>
#include <windows.h>
#include <vector>
#include <glm/gtc/quaternion.hpp>
#include <glm/gtx/quaternion.hpp>
namespace Systems
@@ -30,11 +28,11 @@ private:
//File-info
char type[4];
DWORD size, chunkSize;
unsigned long size, chunkSize;
short formatType, channels;
DWORD sampleRate, avgBytesPerSec;
unsigned long sampleRate, avgBytesPerSec;
short bytesPerSample, bitsPerSample;
DWORD dataSize;
unsigned long dataSize;
std::map<Component*, ALuint> m_Source;