FeatherMC/src/DedicatedServer.h

16 lines
235 B
C
Raw Normal View History

2020-07-24 10:17:36 +01:00
#pragma once
#include "util/SocketUtil.h"
namespace Feather
{
class DedicatedServer
{
public:
DedicatedServer(uint16_t port);
~DedicatedServer();
private:
Sockets::TCPSocket m_socket;
};
}