2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-18 02:45:23 +00:00

Various CPlayer and CBodyStateCmdMgr imps

This commit is contained in:
Jack Andersen
2017-07-05 08:34:12 -10:00
parent 6f9e6712ce
commit bfb16a3a0d
27 changed files with 891 additions and 105 deletions

View File

@@ -0,0 +1,19 @@
#ifndef __URDE_CSTEERINGBEHAVIORS_HPP__
#define __URDE_CSTEERINGBEHAVIORS_HPP__
#include "RetroTypes.hpp"
#include "zeus/CVector3f.hpp"
namespace urde
{
class CSteeringBehaviors
{
public:
static zeus::CVector3f ProjectOrbitalPosition(const zeus::CVector3f&, const zeus::CVector3f&,
const zeus::CVector3f&, float);
};
}
#endif // __URDE_CSTEERINGBEHAVIORS_HPP__