Fix compilation & APIGen issues

This commit is contained in:
Damian Korczowski
2021-03-08 23:42:33 +01:00
parent f86e22ba87
commit 1c511d112d
7 changed files with 26 additions and 14 deletions

View File

@@ -4,6 +4,7 @@
#include "NetworkMessage.h"
#include "NetworkConfig.h"
#include "NetworkConnection.h"
#include "INetworkDriver.h"
#include "Engine/Core/Core.h"
@@ -77,10 +78,10 @@ void NetworkManager::Disconnect(const NetworkConnection& connection)
NetworkDriver->Disconnect(connection);
}
bool NetworkManager::PopEvent(NetworkEvent* event)
bool NetworkManager::PopEvent(NetworkEvent* eventPtr)
{
ASSERT(NetworkDriver != nullptr);
return NetworkDriver->PopEvent(event);
return NetworkDriver->PopEvent(eventPtr);
}
NetworkMessage NetworkManager::BeginSendMessage()