diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-07-09 20:59:16 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-07-09 20:59:16 +0100 |
commit | c920fe38a19013b99f3f74e48da9724fb053c212 (patch) | |
tree | 6bb036fd3f61b85daceb26f74378eadcdd977db1 /src/T2MsgWindow.cpp | |
parent | 96a63139221587c6be9659c1e07eacd3a8e7f048 (diff) | |
download | t2win-c920fe38a19013b99f3f74e48da9724fb053c212.tar.gz t2win-c920fe38a19013b99f3f74e48da9724fb053c212.zip |
support building from VC++ IDE, add resources
Diffstat (limited to 'src/T2MsgWindow.cpp')
-rw-r--r-- | src/T2MsgWindow.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/T2MsgWindow.cpp b/src/T2MsgWindow.cpp index d63d054..a6f52a8 100644 --- a/src/T2MsgWindow.cpp +++ b/src/T2MsgWindow.cpp @@ -1,9 +1,10 @@ -#include "T2DlgItemAnimation.h" -#include "T2ImageObj.h" +#include "StdAfx.h" +#include "T2DLL/T2DlgItemAnimation.h" +#include "T2DLL/T2ImageObj.h" #include "T2MsgWindow.h" #include "T2MWControl.h" #include "T2TowerDoc.h" -#include "T2WorldDef.h" +#include "T2DLL/T2WorldDef.h" #ifdef _DEBUG #define new DEBUG_NEW @@ -38,10 +39,12 @@ T2MsgWindow::T2MsgWindow() { } BEGIN_MESSAGE_MAP(T2MsgWindow, CFrameWnd) + //{{AFX_MSG_MAP(T2MsgWindow) ON_WM_QUERYNEWPALETTE() ON_WM_ERASEBKGND() ON_WM_CREATE() ON_WM_CLOSE() + //}}AFX_MSG_MAP END_MESSAGE_MAP() void T2MsgWindow::SetDocument(T2TowerDoc *inDoc) { |