10 lines
140 B
C++
10 lines
140 B
C++
#include "include/server.h"
|
|
|
|
Server::Server(int p_port, int p_ws_port)
|
|
{
|
|
port = p_port;
|
|
ws_port = p_ws_port;
|
|
}
|
|
|
|
void Server::start() {}
|