mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-09-20 04:36:01 +08:00
[raknet] Add ReliabilityLayer ctor as stub
* Adds `ReliabilityLayer::InitializeVariable()` stub
This commit is contained in:
15
raknet/ReliabilityLayer.cpp
Normal file
15
raknet/ReliabilityLayer.cpp
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// TODO: Implement ReliabilityLayer.cpp
|
||||||
|
|
||||||
|
#include "ReliabilityLayer.h"
|
||||||
|
|
||||||
|
ReliabilityLayer::ReliabilityLayer()
|
||||||
|
{
|
||||||
|
// TODO: ReliabilityLayer::ReliabilityLayer
|
||||||
|
|
||||||
|
InitializeVariables();
|
||||||
|
}
|
||||||
|
|
||||||
|
void ReliabilityLayer::InitializeVariables( void )
|
||||||
|
{
|
||||||
|
// TODO: ReliabilityLayer::InitializeVariables
|
||||||
|
}
|
20
raknet/ReliabilityLayer.h
Normal file
20
raknet/ReliabilityLayer.h
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// 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
|
Reference in New Issue
Block a user