mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 02:01:39 +00:00
15 lines
231 B
C
15 lines
231 B
C
|
|
||
|
#ifndef __network_h__
|
||
|
#define __network_h__
|
||
|
|
||
|
extern short nNetMoveFrames;
|
||
|
|
||
|
void SendGoodbye();
|
||
|
void UpdateNetInputs();
|
||
|
int InitNet(short nSocket, int nPlayers);
|
||
|
int InitSerial();
|
||
|
void AbortNetworkPlay();
|
||
|
void UnInitNet();
|
||
|
|
||
|
#endif
|