[saco] Add CDeathWindow stub constructor

This commit is contained in:
RD42 2024-03-20 23:46:57 +08:00
parent 57f5d13be0
commit a7b92a2f3d
3 changed files with 14 additions and 0 deletions

View File

@ -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

View File

@ -8,6 +8,8 @@ class CDeathWindow
private:
public:
void AddMessage(CHAR *a1, CHAR *a2, DWORD a3, DWORD a4, BYTE a5);
CDeathWindow(IDirect3DDevice9 *pD3DDevice);
};
//----------------------------------------------------

View File

@ -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