server state test
This commit is contained in:
19
include/server/socket/TcpSocket.h
Normal file
19
include/server/socket/TcpSocket.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <server/IServerSocket.h>
|
||||
|
||||
namespace td {
|
||||
namespace server {
|
||||
|
||||
class TcpSocket : public IServerSocket {
|
||||
private:
|
||||
/* data */
|
||||
public:
|
||||
TcpSocket(/* args */) {}
|
||||
~TcpSocket() {}
|
||||
|
||||
virtual void Send(PlayerID, const protocol::PacketBase&) {}
|
||||
};
|
||||
|
||||
} // namespace server
|
||||
} // namespace td
|
||||
Reference in New Issue
Block a user