mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-03 16:13:34 +08:00
[raknet] Add ReliabilityLayer ctor as stub
* Adds `ReliabilityLayer::InitializeVariable()` stub
This commit is contained in:
parent
8a02086d3f
commit
e1fc24b768
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
|
Loading…
x
Reference in New Issue
Block a user