mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-02 19:27:12 +00:00
e1fc24b768
* Adds `ReliabilityLayer::InitializeVariable()` stub
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
|