]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - console.h
coronas now scale with the light radius
[xonotic/darkplaces.git] / console.h
index 582731253d9da3e41847ee3b88bc686d7b36e408..3122584d5f72601948648a95b51d139dd83cdd6f 100644 (file)
--- a/console.h
+++ b/console.h
@@ -32,7 +32,7 @@ void Con_DrawCharacter (int cx, int line, int num);
 
 void Con_CheckResize (void);
 void Con_Init (void);
-void Con_DrawConsole (int lines, qboolean drawinput);
+void Con_DrawConsole (int lines);
 void Con_Print (char *txt);
 void Con_Printf (char *fmt, ...);
 void Con_DPrintf (char *fmt, ...);
@@ -41,3 +41,14 @@ void Con_Clear_f (void);
 void Con_DrawNotify (void);
 void Con_ClearNotify (void);
 void Con_ToggleConsole_f (void);
+
+// wrapper function to attempt to either complete the command line
+// or to list possible matches grouped by type
+// (i.e. will display possible variables, aliases, commands
+// that match what they've typed so far)
+void Con_CompleteCommandLine(void);
+
+// Generic libs/util/console.c function to display a list
+// formatted in columns on the console
+void Con_DisplayList(char **list);
+