Merge pull request #202 from biswop/master
added complete points button to interactive map
This commit is contained in:
commit
03a65cb6b4
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user