Files
fishtanks/src/Components/Transform.h
T
Jace 3470a80f40 Revert "Indentation style changed to Horstmann"
This reverts commit f2259f712d.

Conflicts:

	src/GameWorld.cpp
	src/Systems/PhysicsSystem.cpp
2014-04-12 01:48:15 +02:00

23 lines
316 B
C++
Executable File

#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__