Tank tower and barrel steering working
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#ifndef TowerSteering_h__
|
||||
#define TowerSteering_h__
|
||||
|
||||
#include "Component.h"
|
||||
|
||||
namespace Components
|
||||
{
|
||||
|
||||
struct TowerSteering : Component
|
||||
{
|
||||
TowerSteering()
|
||||
: Velocity(1.f), Axis(glm::vec3(0,1,0)){ }
|
||||
|
||||
float Velocity;
|
||||
glm::vec3 Axis;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // TowerSteering_h__
|
||||
Reference in New Issue
Block a user