mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-07 08:21:59 +00:00
Create an input subsection for the docs.
This commit is contained in:
parent
fb3396a21d
commit
e1f9cb2028
1 changed files with 9 additions and 1 deletions
|
@ -34,8 +34,14 @@
|
||||||
# include "QF/quakeio.h"
|
# include "QF/quakeio.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// these are the key numbers that should be passed to Key_Event
|
/** \defgroup input Input Sub-system */
|
||||||
|
|
||||||
|
/** \defgroup input_keybinding Key Binding Sub-system
|
||||||
|
\ingroup input
|
||||||
|
*/
|
||||||
|
//@{
|
||||||
|
|
||||||
|
/// these are the key numbers that should be passed to Key_Event
|
||||||
typedef enum {
|
typedef enum {
|
||||||
/* The keyboard syms have been cleverly chosen to map to ASCII */
|
/* The keyboard syms have been cleverly chosen to map to ASCII */
|
||||||
QFK_UNKNOWN = 0,
|
QFK_UNKNOWN = 0,
|
||||||
|
@ -653,4 +659,6 @@ struct progs_s;
|
||||||
void Key_Progs_Init (struct progs_s *pr);
|
void Key_Progs_Init (struct progs_s *pr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//@}
|
||||||
|
|
||||||
#endif // _KEYS_H
|
#endif // _KEYS_H
|
||||||
|
|
Loading…
Reference in a new issue