8 lines
520 B
C++
8 lines
520 B
C++
#include "Selection_Rectangle_Overlay.hpp"
|
|
namespace aethera::render_2d {
|
|
bool Selection_Rectangle_Overlay::Prop::operator==(const Prop&) const = default;
|
|
bool Selection_Rectangle_Overlay::State::operator==(const State&) const = default;
|
|
std::vector<Rect_F> Selection_Rectangle_Overlay::selected_regions() const { return static_cast<const Private&>(*d).dispatch->selected_regions(this); }
|
|
void Selection_Rectangle_Overlay::clear_selected_regions() { static_cast<Private&>(*d).dispatch->clear_selected_regions(this); }
|
|
}
|