4#ifndef FTXUI_SCREEN_BOX_HPP
5#define FTXUI_SCREEN_BOX_HPP
18struct FTXUI_EXPORT(SCREEN) Box {
24 static auto Intersection(Box a, Box b) -> Box;
25 static auto Union(Box a, Box b) -> Box;
26 void Shift(
int x,
int y);
27 bool Contain(
int x,
int y)
const;
29 bool operator==(
const Box& other)
const;
30 bool operator!=(
const Box& other)
const;