aboutsummaryrefslogtreecommitdiff
path: root/sway/movement.h
blob: c88b44bde25250ffdccf561bc8aab6f625254bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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
};

void move_focus(enum movement_direction direction);

#endif