-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrols.h
44 lines (40 loc) · 1.5 KB
/
controls.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* controls.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jesuserr <jesuserr@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/16 12:30:23 by jesuserr #+# #+# */
/* Updated: 2023/12/08 14:26:06 by jesuserr ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CONTROLS_H
# define CONTROLS_H
/*
** -.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-.-'-
** DEFINES
*/
# define ESC_KEY 53
# define Q_KEY 12
# define W_KEY 13
# define A_KEY 00
# define S_KEY 01
# define Z_KEY 06
# define X_KEY 07
# define LEFT_KEY 123
# define RIGHT_KEY 124
# define DOWN_KEY 125
# define UP_KEY 126
# define I_KEY 34
# define O_KEY 31
# define P_KEY 35
# define BAR_KEY 49
# define ONE_KEY 18
# define TWO_KEY 19
# define LB_BUTTON 01
# define RB_BUTTON 02
# define WHEEL_BUTTON 03
# define WHEEL_UP 04
# define WHEEL_DOWN 05
#endif