Added more Error checks

This commit is contained in:
Stiffly
2014-05-27 04:41:51 +02:00
parent 3b96be2162
commit 62adbdb2c8
5 changed files with 41 additions and 29 deletions
+2
View File
@@ -5,6 +5,7 @@
#include <vector>
#include "System.h"
#include "Systems/TransformSystem.h"
#include "Components/Transform.h"
#include "Components/SoundEmitter.h"
#include "Components/Listener.h"
@@ -44,6 +45,7 @@ private:
std::map<EntityID, FMOD_CHANNEL*> m_DeleteChannels;
std::map<EntityID, FMOD_SOUND*> m_Sounds;
std::map<EntityID, FMOD_SOUND*> m_DeleteSounds;
std::shared_ptr<Systems::TransformSystem> m_TransformSystem;
};