Add weapon cycling bindings for mouse and joystick buttons. Add weapon cycling bindi...
[chocolate-doom.git] / setup / mouse.h
blob48270caab7599ba5b175be90e45637f8c4c0f533
1 // Emacs style mode select -*- C++ -*-
2 //-----------------------------------------------------------------------------
3 //
4 // Copyright(C) 2006 Simon Howard
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 // 02111-1307, USA.
22 #ifndef SETUP_MOUSE_H
23 #define SETUP_MOUSE_H
25 extern int usemouse;
27 extern int novert;
28 extern int mouseSensitivity;
29 extern float mouse_acceleration;
30 extern int mouse_threshold;
31 extern int grabmouse;
32 extern int mousebfire;
33 extern int mousebforward;
34 extern int mousebstrafe;
35 extern int mousebstrafeleft;
36 extern int mousebstraferight;
37 extern int mousebbackward;
38 extern int mousebuse;
39 extern int dclick_use;
40 extern int mousebprevweapon;
41 extern int mousebnextweapon;
43 void ConfigMouse(void);
46 #endif /* #ifndef SETUP_MOUSE_H */