~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/network/nNetwork.h

  • Committer: wrtlprnft
  • Date: 2008-03-24 08:28:20 UTC
  • mfrom: (563.1.226)
  • Revision ID: wrtlprnft@users.sf.net-20080324082820-235q3jssjh059s53
Merged changes from the 0.2.8 branch.
The pighack help text got replaced by the new help menu.
To emulate the old behavior use:
REMOVE_HELP_TOPIC commands
HELP_INTRODUCTORY_BLURB <your help text>

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
 
106
106
// We can be single player, multiplayer server/client.
107
107
typedef enum {nSTANDALONE,nSERVER,nCLIENT} nNetState;
108
 
typedef enum {nOK, nTIMEOUT, nDENIED}      nConnectError;
 
108
typedef enum {nOK, nTIMEOUT, nDENIED, nABORT}   nConnectError;
109
109
 
110
110
 
111
111
// set/get the state
620
620
 
621
621
// causes the connected clients to print a message
622
622
void sn_ConsoleOut(const tOutput &message,int client=-1);
623
 
nMessage* sn_ConsoleOutMessage(const tOutput &message);
 
623
nMessage* sn_ConsoleOutMessage( tString const & message );
624
624
 
625
625
// causes the connected clients to print a message in the center of the screeen
626
626
void sn_CenterMessage(const tOutput &message,int client=-1);