From 7f8ebb7d0dcb687574554b877a0e84f48718df37 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 16 Aug 2015 11:02:56 -0400 Subject: Move headers to include/ --- include/movement.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/movement.h (limited to 'include/movement.h') diff --git a/include/movement.h b/include/movement.h new file mode 100644 index 00000000..dd701877 --- /dev/null +++ b/include/movement.h @@ -0,0 +1,17 @@ +#ifndef _SWAY_MOVEMENT_H +#define _SWAY_MOVEMENT_H + +#include +#include "list.h" + +enum movement_direction { + MOVE_LEFT, + MOVE_RIGHT, + MOVE_UP, + MOVE_DOWN, + MOVE_PARENT +}; + +bool move_focus(enum movement_direction direction); + +#endif -- cgit v1.2.3-54-g00ecf