WIP Reliable Message

This commit is contained in:
Jocke
2016-02-03 10:28:15 +01:00
parent 06f64f8fbf
commit e133791369
10 changed files with 40 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "Network/HybridClient.h"
HybridClient::HybridClient(ConfigFile * config) : Client(config)
{
}
HybridClient::~HybridClient()
{
}
+1 -1
View File
@@ -271,7 +271,7 @@ void Server::parseOnInputCommand(Packet& packet)
e.PlayerID = player; // Set correct player id
e.Value = packet.ReadPrimitive<float>();
m_EventBroker->Publish(e);
//LOG_INFO("Server::parseOnInputCommand: Command is %s. Value is %f. PlayerID is %i.", e.Command.c_str(), e.Value, e.PlayerID);
LOG_INFO("Server::parseOnInputCommand: Command is %s. Value is %f. PlayerID is %i.", e.Command.c_str(), e.Value, e.PlayerID);
}
}
}
View File