(Chore): Remove useless comments

This commit is contained in:
illyum 2024-08-16 03:22:08 -06:00
parent 1c24c169d6
commit 7bbb012b74
3 changed files with 2 additions and 5 deletions

View File

@ -15,7 +15,6 @@ int main() {
dmxEngine.start();
DmxWriter dmxWriter(dmxEngine);
// Initialize random seed
srand(static_cast<unsigned int>(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

View File

@ -17,5 +17,5 @@ void Panel::Draw() {
}
void Panel::Update() {
// This method can be expanded to handle resizing, interactions, etc.
}

View File

@ -18,7 +18,6 @@ struct Panel {
Color headerColor;
bool isVisible;
// Panel content can be expanded later
void Draw();
void Update();
};