Meh-ish helicopter physics

This commit is contained in:
2014-05-17 00:56:38 +02:00
parent add27aa8f4
commit 16d51c64c5
11 changed files with 259 additions and 653 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef HelicopterSteering_h__
#define HelicopterSteering_h__
#include "Component.h"
namespace Components
{
struct HelicopterSteering : Component
{
HelicopterSteering* Clone() const override { return new HelicopterSteering(*this); }
};
}
#endif // HelicopterSteering_h__