mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
18 lines
367 B
C++
18 lines
367 B
C++
// TODO: Implement RakNetworkFactory.cpp
|
|
|
|
#include "RakNetworkFactory.h"
|
|
#include "RakServerInterface.h"
|
|
|
|
#include "RakServer.h"
|
|
|
|
#include "RakPeerInterface.h"
|
|
#include "RakPeer.h"
|
|
|
|
RakServerInterface* RakNetworkFactory::GetRakServerInterface( void )
|
|
{
|
|
return new RakServer;
|
|
}
|
|
RakPeerInterface* RakNetworkFactory::GetRakPeerInterface( void )
|
|
{
|
|
return new RakPeer;
|
|
} |