mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-05 17:13:27 +08:00
21 lines
275 B
C
21 lines
275 B
C
|
// TODO: Implement ReliabilityLayer.h
|
||
|
|
||
|
#ifndef __RELIABILITY_LAYER_H
|
||
|
#define __RELIABILITY_LAYER_H
|
||
|
|
||
|
#include "SocketLayer.h"
|
||
|
|
||
|
class ReliabilityLayer
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
/// Constructor
|
||
|
ReliabilityLayer();
|
||
|
|
||
|
// Initialize the variables
|
||
|
void InitializeVariables( void );
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|