mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
14 lines
183 B
C++
14 lines
183 B
C++
#pragma once
|
|
#include "rage/grcViewport.hpp"
|
|
|
|
struct CViewportGame
|
|
{
|
|
public:
|
|
virtual ~CViewportGame() = 0;
|
|
|
|
private:
|
|
char m_pad[8];
|
|
|
|
public:
|
|
rage::grcViewport viewport;
|
|
}; |