Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class CThirPersonInput {
  2. public:
  3.     void*               pvftable;                     //0x00
  4.     bool                m_fTrackIRAvailable;          //0x04
  5.     bool                m_fMouseInitialized;          //0x05
  6.     bool                m_fMouseActive;               //0x06
  7.     bool                m_fJoystickAdvancedInit;      //0x07
  8.     char                pad_0x08[0x2C];               //0x08
  9.     void*               m_pKeys;                      //0x34
  10.     char                pad_0x38[0x64];               //0x38
  11.     int                 pad_0x41;
  12.     int                 pad_0x42;
  13.     bool                m_fCameraInterceptingMouse;   //0x9C
  14.     bool                m_fCameraInThirdPerson;       //0x9D
  15.     bool                m_fCameraMovingWithMouse;     //0x9E
  16.     Vector              m_vecCameraOffset;            //0xA0
  17.     bool                m_fCameraDistanceMove;        //0xAC
  18.     int                 m_nCameraOldX;                //0xB0
  19.     int                 m_nCameraOldY;                //0xB4
  20.     int                 m_nCameraX;                   //0xB8
  21.     int                 m_nCameraY;                   //0xBC
  22.     bool                m_CameraIsOrthographic;       //0xC0
  23.     Vector              m_angPreviousViewAngles;      //0xC4
  24.     Vector              m_angPreviousViewAnglesTilt;  //0xD0
  25.     float               m_flLastForwardMove;          //0xDC
  26.     int                 m_nClearInputState;           //0xE0
  27.     char                pad_0xE4[0x8];                //0xE4
  28.     CUserCmd*           m_pCommands;                  //0xEC
  29.     CVerifiedUserCmd*   m_pVerifiedCommands;          //0xF0
  30. };
  31.  
  32. class CInput {
  33. public:
  34.     void*               pvftable;                     //0x00
  35.     bool                m_fTrackIRAvailable;          //0x04
  36.     bool                m_fMouseInitialized;          //0x05
  37.     bool                m_fMouseActive;               //0x06
  38.     bool                m_fJoystickAdvancedInit;      //0x07
  39.     char                pad_0x08[0x2C];               //0x08
  40.     void*               m_pKeys;                      //0x34
  41.     char                pad_0x38[0x64];               //0x38
  42.     bool                m_fCameraInterceptingMouse;   //0x9C
  43.     bool                m_fCameraInThirdPerson;       //0x9D
  44.     bool                m_fCameraMovingWithMouse;     //0x9E
  45.     Vector              m_vecCameraOffset;            //0xA0
  46.     bool                m_fCameraDistanceMove;        //0xAC
  47.     int                 m_nCameraOldX;                //0xB0
  48.     int                 m_nCameraOldY;                //0xB4
  49.     int                 m_nCameraX;                   //0xB8
  50.     int                 m_nCameraY;                   //0xBC
  51.     bool                m_CameraIsOrthographic;       //0xC0
  52.     QAngle              m_angPreviousViewAngles;      //0xC4
  53.     QAngle              m_angPreviousViewAnglesTilt;  //0xD0
  54.     float               m_flLastForwardMove;          //0xDC
  55.     int                 m_nClearInputState;           //0xE0
  56.     char                pad_0xE4[0x8];                //0xE4
  57.     CUserCmd*           m_pCommands;                  //0xEC
  58.     CVerifiedUserCmd*   m_pVerifiedCommands;          //0xF0
  59. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement