raze/source/exhumed/src/network.cpp
nukeykt 50349a6b3d wip
# Conflicts:
#	platform/Windows/exhumed.vcxproj
#	platform/Windows/exhumed.vcxproj.filters
#	source/build/include/build.h
#	source/build/src/palette.cpp
2019-11-21 22:59:33 +01:00

41 lines
394 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()
{
}