mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-01 08:41:33 +08:00
f2dc080a35
- Put the MIT copyright at the end. - Move the directory /other -> tools - Various improvements.
22 lines
425 B
C++
22 lines
425 B
C++
#ifndef FTXUI_SCREEN_BOX_HPP
|
|
#define FTXUI_SCREEN_BOX_HPP
|
|
|
|
namespace ftxui {
|
|
|
|
struct Box {
|
|
int x_min;
|
|
int x_max;
|
|
int y_min;
|
|
int y_max;
|
|
|
|
static Box Intersection(Box a, Box b);
|
|
};
|
|
|
|
} // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_SCREEN_BOX_HPP */
|
|
|
|
// Copyright 2020 Arthur Sonzogni. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
// the LICENSE file.
|