added complete points button to interactive map

This commit is contained in:
biswop 2022-07-03 00:33:19 +10:00
parent d864450bd7
commit 477ae85ecf

View File

@ -411,6 +411,14 @@ namespace cheat::feature
} }
ImGui::CloseCurrentPopup(); ImGui::CloseCurrentPopup();
} }
if (ImGui::Button("Complete progress"))
{
for (auto& [pointID, point] : label.points)
{
CompletePoint(&point);
}
ImGui::CloseCurrentPopup();
}
ImGui::EndPopup(); ImGui::EndPopup();
} }