#include #include "Vapp.hpp" #include "values/Dna.hpp" #include #include #include void Vapp::init() { // TraceLog(LOG_INFO, "%d / %d = %d", sizeof(Dna), sizeof(int64_t), sizeof(Dna) / sizeof(int64_t)); } void Vapp::update() { } void Vapp::draw() { ClearBackground(RAYWHITE); ImGui::DockSpaceOverViewport(0, NULL, ImGuiDockNodeFlags_PassthruCentralNode); if (ImGui::BeginMainMenuBar()) { if (ImGui::BeginMenu("Window")) { if (ImGui::MenuItem("Demo Window", nullptr, showDemoWindow)) showDemoWindow = !showDemoWindow; ImGui::EndMenu(); } ImGui::EndMainMenuBar(); } if (showDemoWindow) ImGui::ShowDemoWindow(&showDemoWindow); } void Vapp::deinit() { }