From b9b74e88028f81e7b169a5e168102138e8c2c46c Mon Sep 17 00:00:00 2001 From: yzrh Date: Sat, 10 Oct 2020 17:16:14 +0000 Subject: Initial commit. --- src/input.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/input.h (limited to 'src/input.h') diff --git a/src/input.h b/src/input.h new file mode 100644 index 0000000..0446474 --- /dev/null +++ b/src/input.h @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2019-2020, yzrh + * + * SPDX-License-Identifier: Apache-2.0 + */ + +typedef enum { + SNAKE_EMPTY, + SNAKE_LEFT, + SNAKE_UP, + SNAKE_DOWN, + SNAKE_RIGHT, + SNAKE_JUMP, + SNAKE_SELECT, + SNAKE_PAUSE, + SNAKE_RESET, + SNAKE_GOD, + SNAKE_GROW, + SNAKE_TELEPORT, + SNAKE_MUSIC, + SNAKE_TICK_DECREASE, + SNAKE_TICK_INCREASE +} Snake_Input; + +typedef enum { + SNAKE_KEYBOARD, + SNAKE_TOUCHSCREEN, + SNAKE_CONTROLLER +} Snake_Device; -- cgit v1.2.3