1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 10:11:44 +02:00
GiantsTools/Sdk/Include/IGameServerConsole.h

23 lines
620 B
C
Raw Normal View History

2020-08-27 08:10:21 +02:00
#pragma once
#include <IComponent.h>
#include <IGameServer.h>
#include <string>
// {3B2D43AC-2557-4C28-991D-A456B59D76CB}
2020-09-22 07:30:26 +02:00
inline const GUID IID_IGameServerConsole = { 0x3b2d43ac, 0x2557, 0x4c28, 0x99, 0x1d, 0xa4, 0x56, 0xb5, 0x9d, 0x76, 0xcb };
2020-08-27 08:10:21 +02:00
/// <summary>
/// Interface for dedicated server consoles.
/// </summary>
struct IGameServerConsole : IComponent
{
~IGameServerConsole() = default;
virtual void STDMETHODCALLTYPE CloseDialog() = 0;
virtual void STDMETHODCALLTYPE ShowDialog() = 0;
static const int ApiVersion = 1;
};
struct DECLSPEC_UUID("{3B2D43AC-2557-4C28-991D-A456B59D76CB}") IGameServerConsole;