This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
BWMirror-Generator/c/BWAPI/Client/GameTable.h
2014-08-05 10:43:14 +02:00

18 lines
315 B
C++

#pragma once
namespace BWAPI
{
struct GameInstance
{
DWORD serverProcessID;
bool isConnected;
//time_t lastKeepAliveTime;
DWORD lastKeepAliveTime;
};
struct GameTable
{
GameTable() {}
static const int MAX_GAME_INSTANCES = 8;
GameInstance gameInstances[MAX_GAME_INSTANCES];
};
}