FPSGraphWindow

This commit is contained in:
2025-06-09 20:16:05 -05:00
parent ab11857cfa
commit 31d5074ed0
2 changed files with 8 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include "Rect.hpp"
#include "ImageRect.hpp"
#include <JUI/Widgets/Rect.hpp>
#include <JUI/Widgets/ImageRect.hpp>
#include <JUI/Widgets/FpsGraph.hpp>
namespace JUI {
@@ -97,8 +98,12 @@ namespace JUI {
Name("FPSGraphWindow");
Title("FPS Graph");
Size({500_px, 70_px});
this->SetResizable(false);
data_graph = new FpsGraph(this->Content());
data_graph->Size({500_px, 50_px});
}