diff options
author | Simon Howard | 2006-05-29 20:00:41 +0000 |
---|---|---|
committer | Simon Howard | 2006-05-29 20:00:41 +0000 |
commit | 22b086318556567419e1aea8994a9fc62b9c3ac5 (patch) | |
tree | ba62127a48d7b8971d3e8c78dfe4742d817d6cdb /src | |
parent | 1531993b0570f1a0af92a0238f4b871d233fa46f (diff) | |
download | chocolate-doom-22b086318556567419e1aea8994a9fc62b9c3ac5.tar.gz chocolate-doom-22b086318556567419e1aea8994a9fc62b9c3ac5.tar.bz2 chocolate-doom-22b086318556567419e1aea8994a9fc62b9c3ac5.zip |
Add textscreen.h top level header to avoid having to include all txt_*
headers individually.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 542
Diffstat (limited to 'src')
-rw-r--r-- | src/net_gui.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/net_gui.c b/src/net_gui.c index fa64b9d8..e71a1f43 100644 --- a/src/net_gui.c +++ b/src/net_gui.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: net_gui.c 541 2006-05-29 19:54:11Z fraggle $ +// $Id: net_gui.c 542 2006-05-29 20:00:41Z fraggle $ // // Copyright(C) 2005 Simon Howard // @@ -88,15 +88,7 @@ #include "net_gui.h" #include "net_server.h" -#include "txt_main.h" -#include "txt_gui.h" -#include "txt_io.h" - -#include "txt_desktop.h" -#include "txt_label.h" -#include "txt_strut.h" -#include "txt_table.h" -#include "txt_window.h" +#include "textscreen.h" static txt_window_t *window; static txt_label_t *player_labels[MAXPLAYERS]; |