Gate working

This commit is contained in:
ViktorLjung
2014-05-29 21:25:30 +02:00
parent b8ec7e1dbd
commit a1149394bb
13 changed files with 289 additions and 21 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef TriggerMove_h__
#define TriggerMove_h__
#include "Component.h"
namespace Components
{
struct TriggerMove : Component
{
EntityID Entity;
float Time;
glm::vec3 GoalPosition;
virtual TriggerMove* Clone() const override { return new TriggerMove(*this); }
};
}
#endif // TriggerMove_h__