mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-23 13:25:58 +01:00
12 lines
190 B
C
12 lines
190 B
C
|
#ifndef WLR_UTIL_DIRECTION_H
|
||
|
#define WLR_UTIL_DIRECTION_H
|
||
|
|
||
|
enum wlr_direction {
|
||
|
WLR_DIRECTION_UP = 0,
|
||
|
WLR_DIRECTION_DOWN = 1,
|
||
|
WLR_DIRECTION_LEFT = 2,
|
||
|
WLR_DIRECTION_RIGHT = 4,
|
||
|
};
|
||
|
|
||
|
#endif
|