mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
aac4f57110
* Implement `CUnkClass13::RestoreDeviceObjects()` * Update `DoInitStuff()`
19 lines
326 B
C++
19 lines
326 B
C++
|
|
#pragma once
|
|
|
|
class CUnkClass13
|
|
{
|
|
private:
|
|
IDirect3DDevice9 *m_pD3DDevice;
|
|
ID3DXRenderToSurface *m_pD3DRenderToSurface;
|
|
IDirect3DTexture9 *m_pD3DTexture;
|
|
IDirect3DSurface9* m_pD3DSurface;
|
|
D3DDISPLAYMODE m_DisplayMode;
|
|
int field_20;
|
|
|
|
public:
|
|
CUnkClass13(IDirect3DDevice9 *pD3DDevice);
|
|
|
|
void RestoreDeviceObjects();
|
|
};
|