29 lines
635 B
C++
29 lines
635 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <array>
|
|
#include "../../../templeware/utils/math/vector/vector.h"
|
|
|
|
struct CCmdQAngle {
|
|
QAngle_t angValue;
|
|
};
|
|
|
|
class CBaseUserCmdPB {
|
|
public:
|
|
char pad_0x00[0x40];
|
|
CCmdQAngle* pViewangles; // 0x40
|
|
// ... другие поля не нужны для silent aim
|
|
};
|
|
|
|
class CCSGOUserCmdPB {
|
|
public:
|
|
char pad_0x00[0x18];
|
|
CBaseUserCmdPB* pBase; // 0x18
|
|
// ... другие поля не нужны для silent aim
|
|
};
|
|
|
|
class CUserCmd {
|
|
public:
|
|
char pad_0x00[0x18];
|
|
CCSGOUserCmdPB pBase; // 0x18
|
|
// ... другие поля не нужны для silent aim
|
|
};
|