FeatherMC/src/DedicatedServer.cpp

18 lines
235 B
C++
Raw Normal View History

2020-07-24 10:17:36 +01:00
#include "DedicatedServer.h"
namespace Feather
{
DedicatedServer::DedicatedServer(uint16_t port)
2020-07-25 03:01:16 +01:00
: m_listener(port)
2020-07-24 10:17:36 +01:00
{
2020-07-25 03:01:16 +01:00
while (1)
{
}
2020-07-24 10:17:36 +01:00
}
DedicatedServer::~DedicatedServer()
{
}
}