Barely working stripped down version of ScreenInteractive. Now to bring on the SFML events.

This commit is contained in:
Zed A. Shaw 2024-11-13 12:48:42 -05:00
parent 7d3605f58b
commit e3cff8142c
9 changed files with 1070 additions and 7 deletions

View file

@ -2,7 +2,7 @@
void Panel::resize(int width, int height) {
$dirty = true;
$screen = Screen(width, height);
// $screen = ScreenInteractive::FixedSize(width, height);
}
void Panel::set_renderer(std::function< Element()> render) {