[saco] Add CChatWindow::AddDebugMessage stub

This commit is contained in:
RD42
2024-01-31 23:55:30 +08:00
parent c1d78dd05d
commit 2db87fb94e
2 changed files with 8 additions and 1 deletions

View File

@ -1,7 +1,12 @@
#include "chatwindow.h"
#include "main.h"
CChatWindow::CChatWindow()
{
// TODO: CChatWindow::CChatWindow() .text:100680F0
}
void CChatWindow::AddDebugMessage(CHAR * szFormat, ...)
{
// TODO: CChatWindow::AddDebugMessage .text:100680F0
}

View File

@ -8,4 +8,6 @@ private:
public:
CChatWindow();
void AddDebugMessage(CHAR *szFormat, ...);
};