mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-10 19:50:49 +00:00
936ce5a866
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters
41 lines
382 B
C++
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()
|
|
{
|
|
|
|
}
|