mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-03 16:13:34 +08:00
[saco] Add CDeathWindow stub constructor
This commit is contained in:
parent
57f5d13be0
commit
a7b92a2f3d
@ -1,6 +1,15 @@
|
|||||||
|
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
|
||||||
|
//----------------------------------------------------
|
||||||
|
|
||||||
|
CDeathWindow::CDeathWindow(IDirect3DDevice9 *pD3DDevice)
|
||||||
|
{
|
||||||
|
// TODO: CDeathWindow::CDeathWindow
|
||||||
|
}
|
||||||
|
|
||||||
|
//----------------------------------------------------
|
||||||
|
|
||||||
void CDeathWindow::AddMessage(CHAR *a1, CHAR *a2, DWORD a3, DWORD a4, BYTE a5)
|
void CDeathWindow::AddMessage(CHAR *a1, CHAR *a2, DWORD a3, DWORD a4, BYTE a5)
|
||||||
{
|
{
|
||||||
// TODO: CDeathWindow::AddMessage .text:1006A6B0
|
// TODO: CDeathWindow::AddMessage .text:1006A6B0
|
||||||
|
@ -8,6 +8,8 @@ class CDeathWindow
|
|||||||
private:
|
private:
|
||||||
public:
|
public:
|
||||||
void AddMessage(CHAR *a1, CHAR *a2, DWORD a3, DWORD a4, BYTE a5);
|
void AddMessage(CHAR *a1, CHAR *a2, DWORD a3, DWORD a4, BYTE a5);
|
||||||
|
|
||||||
|
CDeathWindow(IDirect3DDevice9 *pD3DDevice);
|
||||||
};
|
};
|
||||||
|
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
|
@ -333,6 +333,9 @@ void DoInitStuff()
|
|||||||
pChatWindow = new CChatWindow(pD3DDevice,pDefaultFont,szChatLogFile);
|
pChatWindow = new CChatWindow(pD3DDevice,pDefaultFont,szChatLogFile);
|
||||||
pCmdWindow = new CCmdWindow(pD3DDevice);
|
pCmdWindow = new CCmdWindow(pD3DDevice);
|
||||||
|
|
||||||
|
if(tSettings.bPlayOnline) {
|
||||||
|
pDeathWindow = new CDeathWindow(pD3DDevice);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: DoInitStuff
|
// TODO: DoInitStuff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user