(Chore): Remove useless comments
This commit is contained in:
parent
1c24c169d6
commit
7bbb012b74
@ -15,7 +15,6 @@ int main() {
|
|||||||
dmxEngine.start();
|
dmxEngine.start();
|
||||||
DmxWriter dmxWriter(dmxEngine);
|
DmxWriter dmxWriter(dmxEngine);
|
||||||
|
|
||||||
// Initialize random seed
|
|
||||||
srand(static_cast<unsigned int>(time(0)));
|
srand(static_cast<unsigned int>(time(0)));
|
||||||
|
|
||||||
const int screenWidth = 1920;
|
const int screenWidth = 1920;
|
||||||
@ -59,9 +58,8 @@ int main() {
|
|||||||
}
|
}
|
||||||
ImGui::Text("%s", randomColors.c_str());
|
ImGui::Text("%s", randomColors.c_str());
|
||||||
|
|
||||||
// End the window
|
|
||||||
ImGui::End();
|
|
||||||
|
|
||||||
|
ImGui::End();
|
||||||
rlImGuiEnd();
|
rlImGuiEnd();
|
||||||
|
|
||||||
// Draw FPS on the screen
|
// Draw FPS on the screen
|
||||||
|
@ -17,5 +17,5 @@ void Panel::Draw() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Panel::Update() {
|
void Panel::Update() {
|
||||||
// This method can be expanded to handle resizing, interactions, etc.
|
|
||||||
}
|
}
|
@ -18,7 +18,6 @@ struct Panel {
|
|||||||
Color headerColor;
|
Color headerColor;
|
||||||
bool isVisible;
|
bool isVisible;
|
||||||
|
|
||||||
// Panel content can be expanded later
|
|
||||||
void Draw();
|
void Draw();
|
||||||
void Update();
|
void Update();
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user