mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
[saco] Add CDeathWindow stub constructor
This commit is contained in:
parent
57f5d13be0
commit
a7b92a2f3d
@ -1,6 +1,15 @@
|
||||
|
||||
#include "main.h"
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
CDeathWindow::CDeathWindow(IDirect3DDevice9 *pD3DDevice)
|
||||
{
|
||||
// TODO: CDeathWindow::CDeathWindow
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
void CDeathWindow::AddMessage(CHAR *a1, CHAR *a2, DWORD a3, DWORD a4, BYTE a5)
|
||||
{
|
||||
// TODO: CDeathWindow::AddMessage .text:1006A6B0
|
||||
|
@ -8,6 +8,8 @@ class CDeathWindow
|
||||
private:
|
||||
public:
|
||||
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);
|
||||
pCmdWindow = new CCmdWindow(pD3DDevice);
|
||||
|
||||
if(tSettings.bPlayOnline) {
|
||||
pDeathWindow = new CDeathWindow(pD3DDevice);
|
||||
}
|
||||
|
||||
|
||||
// TODO: DoInitStuff
|
||||
|
Loading…
Reference in New Issue
Block a user