14 lines
244 B
C++
14 lines
244 B
C++
#pragma once
|
|
|
|
#include "Thing.h"
|
|
#include "Vector3.h"
|
|
|
|
class Quadcopter : public Thing {
|
|
public:
|
|
Quadcopter();
|
|
|
|
void LinearMotion(Vector3 velocity, float yawRate = 0.0F);
|
|
protected:
|
|
Vector3 velocity = Vector3::zero;
|
|
float yawRate = 0.0F;
|
|
}; |