The original Quake 2 sources as originally released under the GPL license on December 21, 2001.

This commit is contained in:
Travis Bradshaw
2012-01-31 13:57:11 -06:00
commit 372afde46e
371 changed files with 219621 additions and 0 deletions

16
linux/rw_linux.h Normal file
View File

@@ -0,0 +1,16 @@
typedef void (*Key_Event_fp_t)(int key, qboolean down);
extern void (*KBD_Update_fp)(void);
extern void (*KBD_Init_fp)(Key_Event_fp_t fp);
extern void (*KBD_Close_fp)(void);
typedef struct in_state {
// Pointers to functions back in client, set by vid_so
void (*IN_CenterView_fp)(void);
Key_Event_fp_t Key_Event_fp;
vec_t *viewangles;
int *in_strafe_state;
} in_state_t;