输出测试,RenderableString基本完成

This commit is contained in:
EmsiaetKadosh
2025-01-17 16:36:39 +08:00
parent 2b7f05d928
commit 1007ac469a
10 changed files with 433 additions and 16 deletions
+1 -4
View File
@@ -19,10 +19,7 @@ public:
static void initialize() noexcept;
explicit Renderer() = default;
void resize(const int width, const int height) noexcept(false) {
windowWidth = width;
windowHeight = height;
}
void resize(int width, int height) noexcept(false);
[[nodiscard]] int getWidth() const noexcept { return windowWidth; }
[[nodiscard]] int getHeight() const noexcept { return windowHeight; }