mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-03 16:13:21 +08:00
13 lines
241 B
C++
13 lines
241 B
C++
#pragma once
|
|
|
|
#include "../player/CPlayerAngles.hpp"
|
|
|
|
class CCameraAngles
|
|
{
|
|
public:
|
|
char pad_0000[960]; //0x0000
|
|
CPlayerAngles* angles; //0x03C0
|
|
char pad_03C8[60]; //0x03C8
|
|
}; //Size: 0x0408
|
|
static_assert(sizeof(CCameraAngles) == 0x408);
|