WIP Reliable Message
This commit is contained in:
@@ -29,7 +29,7 @@ public:
|
||||
~Client();
|
||||
void Start(World* world, EventBroker* eventBroker) override;
|
||||
void Update() override;
|
||||
private:
|
||||
protected:
|
||||
// Assio UDP logic
|
||||
boost::asio::ip::udp::endpoint m_ReceiverEndpoint;
|
||||
boost::asio::io_service m_IOService;
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
#ifndef HybridClient_h__
|
||||
#define HybridClient_h__
|
||||
|
||||
#include "Client.h"
|
||||
|
||||
|
||||
class HybridClient : public Client
|
||||
{
|
||||
public:
|
||||
HybridClient(ConfigFile* config);
|
||||
~HybridClient();
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,7 @@
|
||||
#ifndef TCPClient_h__
|
||||
#define TCPClient_h__
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user