#ifndef DUST3D_GENERIC_SPINE_AND_PSEUDO_PHYSICS_H #define DUST3D_GENERIC_SPINE_AND_PSEUDO_PHYSICS_H #include class GenericSpineAndPseudoPhysics { public: GenericSpineAndPseudoPhysics() { } static void calculateFootHeights(double preferredHeight, double stanceTime, double swingTime, std::vector *heights, std::vector *moveOffsets=nullptr); private: static const double g; }; #endif