1 //
2 // Copyright(C) 2005-2014 Simon Howard
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 
15 #ifndef SETUP_MULTIPLAYER_H
16 #define SETUP_MULTIPLAYER_H
17 
18 void StartMultiGame(void);
19 void WarpMenu(void);
20 void JoinMultiGame(void);
21 void MultiplayerConfig(void);
22 
23 void SetChatMacroDefaults(void);
24 void SetPlayerNameDefault(void);
25 
26 void BindMultiplayerVariables(void);
27 
28 #endif /* #ifndef SETUP_MULTIPLAYER_H */
29 
30