diff options
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 323a5a0..3f6cf03 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -87,7 +87,7 @@ int main() ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f); - init_administration_obj(); + administration_create(); // Main loop bool done = false; @@ -128,7 +128,7 @@ int main() ImGui_ImplWin32_NewFrame(); ImGui::NewFrame(); - show_dashboard(); + views_draw_dashboard(); // Rendering ImGui::Render(); @@ -143,7 +143,7 @@ int main() g_SwapChainOccluded = (hr == DXGI_STATUS_OCCLUDED); } - destroy_administration_obj(); + administration_destroy(); // Cleanup ImGui_ImplDX11_Shutdown(); |
