This commit is contained in:
EmsiaetKadosh
2025-02-05 15:13:02 +08:00
parent edcc095979
commit a086558f2d
19 changed files with 388 additions and 56 deletions
+8
View File
@@ -3,3 +3,11 @@
//
#include "Window.h"
void Window::render() const noexcept {}
void Window::tick() noexcept {}
void Window::onResize() {}
void FloatWindow::render() const noexcept {
renderer.fill(20, 20, 40, 40, 0xffeeeeee);
}
void Button::render() const noexcept {}