X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=input.h;h=057329644162826f5897b8884713001c375cd2ed;hb=16dee271a7e503a49993c5f934aeb6eb45c19ae1;hp=9bff65e8c92558e435ed16906ef56bc0fb57acf6;hpb=0256e57e16a302ad45090618b8d6eb5930788809;p=xonotic%2Fdarkplaces.git diff --git a/input.h b/input.h index 9bff65e8..05732964 100644 --- a/input.h +++ b/input.h @@ -8,7 +8,7 @@ of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -25,23 +25,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. extern cvar_t in_pitch_min; extern cvar_t in_pitch_max; -void IN_Init (void); +extern qboolean in_client_mouse; +extern float in_mouse_x, in_mouse_y; -void IN_Shutdown (void); +//enum input_dest_e {input_game,input_message,input_menu} input_dest; -void IN_Commands (void); -// oportunity for devices to stick commands on the script buffer - -void IN_Move (usercmd_t *cmd); +void IN_Move (void); // add additional movement on top of the keyboard move cmd -void IN_PreMove(void); -void IN_PostMove(void); - -void IN_Mouse(usercmd_t *cmd, float mx, float my); - -void IN_ClearStates (void); -// restores all button and position states to defaults - #endif