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