mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 07:11:34 +00:00
Added example file for server change file as comment over the loading function.
This commit is contained in:
parent
ff4902dd97
commit
bc54f1593d
1 changed files with 14 additions and 0 deletions
|
@ -1074,6 +1074,20 @@ static void G_LoadHolodeckFile(void) {
|
|||
free(buffer);
|
||||
}
|
||||
|
||||
/*
|
||||
File Format:
|
||||
|
||||
ServerChangeConfig {
|
||||
Server [
|
||||
"1.1.1.1"
|
||||
"Server name"
|
||||
]
|
||||
Server [
|
||||
"1.1.1.2"
|
||||
"Server name 2"
|
||||
]
|
||||
}
|
||||
*/
|
||||
static void G_LoadServerChangeFile(void) {
|
||||
char fileRoute[MAX_QPATH];
|
||||
fileHandle_t f = 0;
|
||||
|
|
Loading…
Reference in a new issue