FTXUI  4.1.0
C++ functional terminal UI.
Loading...
Searching...
No Matches
direction.hpp
Go to the documentation of this file.
1#ifndef FTXUI_DOM_DIRECTION_HPP
2#define FTXUI_DOM_DIRECTION_HPP
3
4namespace ftxui {
5enum class Direction {
6 Up = 0,
7 Down = 1,
8 Left = 2,
9 Right = 3,
10};
11
12} // namespace ftxui
13
14#endif // FTXUI_DOM_DIRECTION_HPP
15// Copyright 2023 Arthur Sonzogni. All rights reserved.
16// Use of this source code is governed by the MIT license that can be found in
17// the LICENSE file.