mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-27 02:01:32 +11:00
35 lines
686 B
C
35 lines
686 B
C
|
/* Copyright (c) 2013-2016 Jeffrey Pfau
|
||
|
*
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
#ifndef GBA_INPUT_H
|
||
|
#define GBA_INPUT_H
|
||
|
|
||
|
#include <mgba-util/common.h>
|
||
|
|
||
|
CXX_GUARD_START
|
||
|
|
||
|
#include <mgba/core/input.h>
|
||
|
|
||
|
extern MGBA_EXPORT const struct mInputPlatformInfo GBAInputInfo;
|
||
|
|
||
|
enum GBAKey {
|
||
|
GBA_KEY_A = 0,
|
||
|
GBA_KEY_B = 1,
|
||
|
GBA_KEY_SELECT = 2,
|
||
|
GBA_KEY_START = 3,
|
||
|
GBA_KEY_RIGHT = 4,
|
||
|
GBA_KEY_LEFT = 5,
|
||
|
GBA_KEY_UP = 6,
|
||
|
GBA_KEY_DOWN = 7,
|
||
|
GBA_KEY_R = 8,
|
||
|
GBA_KEY_L = 9,
|
||
|
GBA_KEY_MAX,
|
||
|
GBA_KEY_NONE = -1
|
||
|
};
|
||
|
|
||
|
CXX_GUARD_END
|
||
|
|
||
|
#endif
|