mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
14 lines
152 B
C++
14 lines
152 B
C++
|
|
#pragma once
|
|
|
|
class CLabel
|
|
{
|
|
private:
|
|
IDirect3DDevice9 *m_pD3DDevice;
|
|
ID3DXSprite *m_pD3DSprite;
|
|
|
|
public:
|
|
CLabel(IDirect3DDevice9 *pD3DDevice);
|
|
|
|
};
|