mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
24 lines
458 B
C++
24 lines
458 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 "Network/Public/IGameServerConsole.h"
|
|
|
|
class ServerConsoleApp : public CWinApp
|
|
{
|
|
public:
|
|
~ServerConsoleApp();
|
|
|
|
// MFC methods
|
|
BOOL InitInstance() override;
|
|
BOOL ExitInstance() override;
|
|
|
|
void InitializeDialog(IGameServiceProvider* serviceProvider);
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|