Garage working, ready for vehicle swap implementation

This commit is contained in:
ViktorLjung
2014-06-01 03:07:47 +02:00
parent a142d368a7
commit d64be64ba4
18 changed files with 711 additions and 276 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef Components_Move_h__
#define Components_Move_h__
#include "Component.h"
namespace Components
{
struct Move : Component
{
float Speed;
glm::vec3 StartPosition;
glm::vec3 GoalPosition;
virtual Move* Clone() const override { return new Move(*this); }
};
}
#endif // Components_Move_h__