Movement/rotation queue fixed and Simon force push

This commit is contained in:
ViktorLjung
2014-05-31 03:52:39 +02:00
parent c489547294
commit a142d368a7
18 changed files with 433 additions and 202 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef Components_Follow_h__
#define Components_Follow_h__
#include "Component.h"
#include "Entity.h"
namespace Components
{
struct Follow : Component
{
EntityID Entity;
glm::vec3 FollowAxis;
float Distance;
virtual Follow* Clone() const override { return new Follow(*this); }
};
}
#endif // !Components_Follow_h__