diff --git a/docs/reference/wmud/wmud-docs.sgml b/docs/reference/wmud/wmud-docs.sgml index 03e80aa..a8ff767 100644 --- a/docs/reference/wmud/wmud-docs.sgml +++ b/docs/reference/wmud/wmud-docs.sgml @@ -19,6 +19,7 @@ + diff --git a/docs/reference/wmud/wmud-sections.txt b/docs/reference/wmud/wmud-sections.txt index 48458d4..00a9ebb 100644 --- a/docs/reference/wmud/wmud-sections.txt +++ b/docs/reference/wmud/wmud-sections.txt @@ -12,6 +12,21 @@ wmud_random_string
+maintenance-thread +wmud_maintenance_init +
+ +
+ +game-thread +wmudClientState +wmudClient +elapsed_seconds +elapsed_cycle +game_context +wmud_game_init +
+ game-networking TELNET_IAC TELNET_WILL @@ -32,7 +47,7 @@ wmud_interpret_game_command
-Database handling + db WMUD_DB_ERROR wmudDbError @@ -42,12 +57,13 @@ wmud_db_save_player
-Player handling + player +wmudPlayer players wmud_player_dup wmud_player_free -wmud_player_exists wmud_player_auth +wmud_player_exists
diff --git a/src/game.h b/src/game.h index e2e991e..8ad8f92 100644 --- a/src/game.h +++ b/src/game.h @@ -1,3 +1,21 @@ +/* wMUD - Yet another MUD codebase by W00d5t0ck + * Copyright (C) 2012 - Gergely POLONKAI + * + * game.h: Game Thread related functions + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ #ifndef __WMUD_GAME_H__ #define __WMUD_GAME_H__