style refactor

This commit is contained in:
Ivan I. Ovchinnikov
2026-07-27 21:29:50 +03:00
parent 47b1e70663
commit 5a702fe0f8
9 changed files with 119 additions and 119 deletions
+3 -3
View File
@@ -39,7 +39,7 @@ int main(int, char**) {
// Создаем и инициализируем наше изолированное приложение
SerialApp app;
app.Initialize();
app.initialize();
// Главный цикл приложения
while (!glfwWindowShouldClose(window)) {
@@ -51,8 +51,8 @@ int main(int, char**) {
ImGui::NewFrame();
// Рендерим наше кастомное UI
app.RenderUI();
if (app.ShouldClose()) {
app.renderUI();
if (app.isClosing()) {
glfwSetWindowShouldClose(window, GLFW_TRUE);
}