diff options
Diffstat (limited to 'src/sdl/action.h')
-rw-r--r-- | src/sdl/action.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sdl/action.h b/src/sdl/action.h index d6d9870..4713f62 100644 --- a/src/sdl/action.h +++ b/src/sdl/action.h @@ -10,6 +10,9 @@ typedef enum { ACTION_WARP, ACTION_WARP_BUF_PUSH, ACTION_WARP_BUF_POP, + ACTION_ZOOM_IN, + ACTION_ZOOM_OUT, + ACTION_ZOOM_RESET, ACTION_UNDO, ACTION_NEXT, ACTION_SOLVE, @@ -22,6 +25,6 @@ typedef struct { uint64_t data; } action_t; -action_t get_action(const SDL_Keycode); +action_t get_action(const SDL_Event * const); #endif /* ACTION_H */ |