mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-04 09:42:40 +02:00
4271fb3c95
Support for: - listing of active players - listing of active rooms - joining and leaving rooms - placeholder support for multiple chat rooms - proxy connections - invites into private rooms (only lobby server side for now, client and match server need work)
29 lines
556 B
C++
29 lines
556 B
C++
/*
|
|
* EntryPoint.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
|
|
#include "LobbyServer.h"
|
|
|
|
#include "../lib/VCMIDirs.h"
|
|
|
|
static const int LISTENING_PORT = 30303;
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
auto databasePath = VCMIDirs::get().userDataPath() / "vcmiLobby.db";
|
|
|
|
LobbyServer server(databasePath);
|
|
|
|
server.start(LISTENING_PORT);
|
|
server.run();
|
|
|
|
return 0;
|
|
}
|