Add weapon cycling bindings for mouse and joystick buttons. Add weapon cycling bindi...
[chocolate-doom.git] / setup / joystick.h
blob5d3973c5326c2c54c87b7f1803fa7596c9f1f119
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_JOYSTICK_H
23 #define SETUP_JOYSTICK_H
25 extern int usejoystick;
26 extern int joybfire;
27 extern int joybstrafe;
28 extern int joybuse;
29 extern int joybspeed;
30 extern int joybstrafeleft;
31 extern int joybstraferight;
32 extern int joybprevweapon;
33 extern int joybnextweapon;
35 extern int joystick_index;
36 extern int joystick_x_axis;
37 extern int joystick_x_invert;
38 extern int joystick_y_axis;
39 extern int joystick_y_invert;
41 void ConfigJoystick(void);
43 #endif /* #ifndef SETUP_JOYSTICK_H */