mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 04:38:59 +00:00
4ed6e86db1
Signed-off-by: eray orçunus <erayorcunus@gmail.com>
33 lines
561 B
C++
33 lines
561 B
C++
#pragma once
|
|
#include "common.h"
|
|
|
|
struct LimbOrientation
|
|
{
|
|
float phi;
|
|
float theta;
|
|
};
|
|
|
|
class CPed;
|
|
|
|
class CPedIK
|
|
{
|
|
public:
|
|
// TODO
|
|
enum {
|
|
FLAG_1,
|
|
FLAG_2,
|
|
FLAG_4, // aims with arm
|
|
};
|
|
|
|
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");
|