#ifndef _SWAY_MOVEMENT_H #define _SWAY_MOVEMENT_H #include #include "list.h" enum movement_direction{ MOVE_LEFT, MOVE_RIGHT, MOVE_UP, MOVE_DOWN }; void move_focus(enum movement_direction direction); #endif