mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
15 lines
274 B
C++
15 lines
274 B
C++
#pragma once
|
|
#include "vector.hpp"
|
|
|
|
namespace rage
|
|
{
|
|
struct grcViewport
|
|
{
|
|
fmatrix44 m_world;
|
|
fmatrix44 m_worldView;
|
|
fmatrix44 m_worldViewProj;
|
|
fmatrix44 m_inverseView;
|
|
fmatrix44 m_view;
|
|
fmatrix44 m_projection;
|
|
};
|
|
} |