diff options
Diffstat (limited to 'src/core/settings.h')
| -rw-r--r-- | src/core/settings.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h new file mode 100644 index 000000000..a84c3d4b6 --- /dev/null +++ b/src/core/settings.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | namespace Settings { | ||
| 8 | |||
| 9 | struct Values { | ||
| 10 | int pad_a_key; | ||
| 11 | int pad_b_key; | ||
| 12 | int pad_x_key; | ||
| 13 | int pad_y_key; | ||
| 14 | int pad_l_key; | ||
| 15 | int pad_r_key; | ||
| 16 | int pad_start_key; | ||
| 17 | int pad_select_key; | ||
| 18 | int pad_home_key; | ||
| 19 | int pad_dup_key; | ||
| 20 | int pad_ddown_key; | ||
| 21 | int pad_dleft_key; | ||
| 22 | int pad_dright_key; | ||
| 23 | int pad_sup_key; | ||
| 24 | int pad_sdown_key; | ||
| 25 | int pad_sleft_key; | ||
| 26 | int pad_sright_key; | ||
| 27 | } extern values; | ||
| 28 | |||
| 29 | } | ||