Added Listener component

This commit is contained in:
Stiffly
2014-05-19 22:13:52 +02:00
parent 73afc8dad4
commit d06702a7e0
5 changed files with 41 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef Components_Listener_h__
#define Components_Listener_h__
#include <string>
#include <glm/common.hpp>
#include "Component.h"
namespace Components
{
struct Listener : Component
{
Listener() {}
virtual Listener* Clone() const override { return new Listener(*this); }
};
}
#endif // !Components_Listener_h__