summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-08-08 20:34:22 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-08-08 20:34:22 +0200
commit21496e32695744d4679fc11105352c61522ce601 (patch)
treea4bda5abe657f25f5d9054a055d5cdfe93ca64f1 /src/main.cpp
parent550b3bf614d8eeb116cceadf3e180ca7a4490976 (diff)
contact crud
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
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();