全部迁移完成

This commit is contained in:
2026-08-20 22:20:23 +08:00
parent 89ea8239be
commit e67161c90d
60 changed files with 1920 additions and 458 deletions
@@ -0,0 +1,6 @@
#include "Selection_Rectangle_Overlay.hpp"
namespace aethera::render_2d {
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); }
}