mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-24 18:16:52 +01:00
c1bd90c7dd
Signed-off-by: eray orçunus <erayorcunus@gmail.com>
27 lines
492 B
C++
27 lines
492 B
C++
#pragma once
|
|
#include "common.h"
|
|
|
|
struct LimbOrientation
|
|
{
|
|
float phi;
|
|
float theta;
|
|
};
|
|
|
|
class CPed;
|
|
|
|
class CPedIK
|
|
{
|
|
public:
|
|
CPed* m_ped;
|
|
LimbOrientation m_headOrient;
|
|
LimbOrientation m_torsoOrient;
|
|
LimbOrientation m_upperArmOrient;
|
|
LimbOrientation m_lowerArmOrient;
|
|
int32 m_flags;
|
|
|
|
void GetComponentPosition(RwV3d* pos, int id);
|
|
bool PointGunInDirection(float phi, float theta);
|
|
bool PointGunAtPosition(CVector* position);
|
|
};
|
|
static_assert(sizeof(CPedIK) == 0x28, "CPedIK: error");
|