mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00

This commit deserve to be cut into at least 8 sub commit. Sorry, I acknowledge this is bad... Here are the new features: * dom decorator: bold, dim, underlined, inverted. * component mechanism * components * menu * toogle
12 lines
167 B
C++
12 lines
167 B
C++
#ifndef FTX_UI_CORE_BOX
|
|
#define FTX_UI_CORE_BOX
|
|
|
|
struct Box {
|
|
int left;
|
|
int right;
|
|
int top;
|
|
int bottom;
|
|
};
|
|
|
|
#endif /* end of include guard: FTX_UI_CORE_BOX */
|