This commit is contained in:
Quentin 2024-03-31 21:11:14 +02:00 committed by GitHub
parent ddd118410c
commit 052dbff3be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 29 additions and 0 deletions

14
graphics/CViewport.hpp Normal file
View File

@ -0,0 +1,14 @@
#pragma once
#include "rage/grcViewport.hpp"
struct CViewportGame
{
public:
virtual ~CViewportGame() = 0;
private:
char m_pad[8];
public:
rage::grcViewport viewport;
};

15
rage/grcViewport.hpp Normal file
View File

@ -0,0 +1,15 @@
#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;
};
}