mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
42 lines
382 B
C++
42 lines
382 B
C++
|
|
||
|
// this is net.c in the original code
|
||
|
|
||
|
#include "typedefs.h"
|
||
|
#include "network.h"
|
||
|
#include "serial.h"
|
||
|
#include "input.h"
|
||
|
|
||
|
short nNetMoveFrames = 0;
|
||
|
|
||
|
|
||
|
void SendGoodbye()
|
||
|
{
|
||
|
bSendBye = kTrue;
|
||
|
UpdateInputs();
|
||
|
}
|
||
|
|
||
|
void UpdateNetInputs()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
int InitNet(short nSocket, int nPlayers)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int InitSerial()
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
void AbortNetworkPlay()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void UnInitNet()
|
||
|
{
|
||
|
|
||
|
}
|