mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-05 03:00:50 -06:00
26 lines
642 B
C++
26 lines
642 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
#include <SWA/System/GameObject.h>
|
|
|
|
namespace SWA
|
|
{
|
|
class CCamera : public CGameObject // , public Hedgehog::Universe::TStateMachine<CCamera>
|
|
{
|
|
public:
|
|
xpointer<void> m_pVftable;
|
|
// SWA::CCamera::MyCamera
|
|
SWA_INSERT_PADDING(0xC4);
|
|
be<float> m_VertAspectRatio;
|
|
SWA_INSERT_PADDING(0x48);
|
|
be<float> m_HorzAspectRatio;
|
|
SWA_INSERT_PADDING(0x178);
|
|
be<float> m_FieldOfView;
|
|
be<float> m_VertFieldOfView;
|
|
be<float> m_HorzFieldOfView;
|
|
SWA_INSERT_PADDING(0x18);
|
|
bool m_InvertY;
|
|
bool m_InvertX;
|
|
};
|
|
}
|