Files
fishtanks/src/Components/BarrelSteering.h
T
2014-05-12 22:33:53 +02:00

20 lines
279 B
C++

#ifndef BarrelSteering_h__
#define BarrelSteering_h__
#include "Component.h"
namespace Components
{
struct BarrelSteering : Component
{
BarrelSteering()
: Velocity(1.f), Axis(glm::vec3(0,1,0)){ }
float Velocity;
glm::vec3 Axis;
};
}
#endif // BarrelSteering_h__