mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
c01899123c
* Implement `CUnkClass14::RestoreDeviceObjects()` * Update `DoInitStuff()`
16 lines
222 B
C++
16 lines
222 B
C++
|
|
#pragma once
|
|
|
|
class CUnkClass14
|
|
{
|
|
private:
|
|
IDirect3DDevice9 *m_pD3DDevice;
|
|
ID3DXSprite *m_pD3DSprite1;
|
|
ID3DXSprite *m_pD3DSprite2;
|
|
|
|
public:
|
|
CUnkClass14(IDirect3DDevice9 *pD3DDevice);
|
|
|
|
void RestoreDeviceObjects();
|
|
};
|