1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-16 12:11:45 +02:00
GiantsTools/ServerConsoleExample/ServerConsoleApp.h
2020-12-21 00:38:20 -08:00

25 lines
495 B
C++

#pragma once
#ifndef __AFXWIN_H__
#error "include 'pch.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
#include "ServerDialog.h"
#include <IGameServerConsole.h>
#include <ComponentBase.h>
class ServerConsoleApp : public CWinApp
{
public:
~ServerConsoleApp();
// MFC methods
BOOL InitInstance() override;
BOOL ExitInstance() override;
IGameServerConsole* InitializeDialog(HWND hWndParent, IComponentContainer* container);
DECLARE_MESSAGE_MAP()
};