sway-patched-tray-menu-github/sway/movement.h

17 lines
237 B
C
Raw Normal View History

2015-08-10 02:10:26 +02:00
#ifndef _SWAY_MOVEMENT_H
#define _SWAY_MOVEMENT_H
#include <wlc/wlc.h>
#include "list.h"
enum movement_direction{
MOVE_LEFT,
MOVE_RIGHT,
MOVE_UP,
MOVE_DOWN
};
2015-08-10 05:04:37 +02:00
int move_focus(enum movement_direction direction);
2015-08-10 02:10:26 +02:00
#endif