mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-23 06:57:34 +08:00
d81f392e61
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
13 lines
250 B
C++
13 lines
250 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);
|