mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
22 lines
354 B
C++
22 lines
354 B
C++
|
|
// TODO: Implement RakNetworkFactory.h
|
|
|
|
#ifndef __RAK_NETWORK_FACTORY_H
|
|
#define __RAK_NETWORK_FACTORY_H
|
|
|
|
#include "Export.h"
|
|
|
|
class RakServerInterface;
|
|
class RakPeerInterface;
|
|
|
|
class RAK_DLL_EXPORT RakNetworkFactory
|
|
{
|
|
public:
|
|
|
|
static RakServerInterface* GetRakServerInterface( void );
|
|
static RakPeerInterface* GetRakPeerInterface( void );
|
|
|
|
};
|
|
|
|
#endif
|