mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
The goal is to increase the separation in between: * ftxui::screen * ftxui::dom * ftxui::component
16 lines
225 B
C++
16 lines
225 B
C++
#ifndef FTXUI_DOM_BOX_HPP
|
|
#define FTXUI_DOM_BOX_HPP
|
|
|
|
namespace ftxui::dom {
|
|
|
|
struct Box {
|
|
int left;
|
|
int right;
|
|
int top;
|
|
int bottom;
|
|
};
|
|
|
|
}; // namespace ftxui::dom
|
|
|
|
#endif /* end of include guard: FTXUI_DOM_BOX_HPP */
|