From 7bbb012b741e91c8e9fe543fae7f9cfd7f6375ab Mon Sep 17 00:00:00 2001 From: illyum <90023277+itzilly@users.noreply.github.com> Date: Fri, 16 Aug 2024 03:22:08 -0600 Subject: [PATCH] (Chore): Remove useless comments --- src/main.cpp | 4 +--- src/panel.cpp | 2 +- src/panel.h | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index dba3e76..db0a0d9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,7 +15,6 @@ int main() { dmxEngine.start(); DmxWriter dmxWriter(dmxEngine); - // Initialize random seed srand(static_cast(time(0))); const int screenWidth = 1920; @@ -59,9 +58,8 @@ int main() { } ImGui::Text("%s", randomColors.c_str()); - // End the window - ImGui::End(); + ImGui::End(); rlImGuiEnd(); // Draw FPS on the screen diff --git a/src/panel.cpp b/src/panel.cpp index 3711b01..57fc5cf 100644 --- a/src/panel.cpp +++ b/src/panel.cpp @@ -17,5 +17,5 @@ void Panel::Draw() { } void Panel::Update() { - // This method can be expanded to handle resizing, interactions, etc. + } \ No newline at end of file diff --git a/src/panel.h b/src/panel.h index af29611..2d3d8d4 100644 --- a/src/panel.h +++ b/src/panel.h @@ -18,7 +18,6 @@ struct Panel { Color headerColor; bool isVisible; - // Panel content can be expanded later void Draw(); void Update(); };