Adapted Escape the Dawn engine.

This commit is contained in:
2014-04-04 23:14:18 +02:00
parent 6a64de37fb
commit a7985b1686
64 changed files with 3384 additions and 79 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef Components_Transform_h__
#define Components_Transform_h__
#include "Component.h"
namespace Components
{
struct Transform : Component
{
Transform()
: Scale(glm::vec3(1.f)) { }
glm::vec3 Position;
glm::quat Orientation;
glm::vec3 Velocity;
glm::vec3 Scale;
};
}
#endif // Components_Transform_h__