raze/source/exhumed/src/network.cpp
nukeykt 936ce5a866 wip
# Conflicts:
#	platform/Windows/exhumed.vcxproj
#	platform/Windows/exhumed.vcxproj.filters
2019-11-21 22:52:46 +01:00

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