added complete points button to interactive map

This commit is contained in:
biswop
2022-07-03 00:33:19 +10:00
parent e445029c06
commit 0376b817bc

View File

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