2023-11-17 23:54:20 +08:00
|
|
|
// TODO: Implement RakNetworkFactory.cpp
|
|
|
|
|
|
|
|
#include "RakNetworkFactory.h"
|
|
|
|
#include "RakServerInterface.h"
|
2023-11-18 00:00:52 +08:00
|
|
|
|
2023-11-17 23:54:20 +08:00
|
|
|
#include "RakServer.h"
|
|
|
|
|
2023-11-18 00:00:52 +08:00
|
|
|
#include "RakPeerInterface.h"
|
|
|
|
#include "RakPeer.h"
|
|
|
|
|
2023-11-17 23:54:20 +08:00
|
|
|
RakServerInterface* RakNetworkFactory::GetRakServerInterface( void )
|
|
|
|
{
|
|
|
|
return new RakServer;
|
2023-11-18 00:00:52 +08:00
|
|
|
}
|
|
|
|
RakPeerInterface* RakNetworkFactory::GetRakPeerInterface( void )
|
|
|
|
{
|
|
|
|
return new RakPeer;
|
2023-11-17 23:54:20 +08:00
|
|
|
}
|