implement vinicius' reviews

This commit is contained in:
CrazyBloo 2024-09-10 22:37:09 -04:00
parent 49253fa92a
commit 5990868355
2 changed files with 1 additions and 5 deletions

View file

@ -11,7 +11,6 @@ using namespace ImGui;
using namespace Libraries::NpTrophy;
TrophyUI::TrophyUI() {
first_render = true;
AddLayer(this);
}
@ -68,10 +67,8 @@ void TrophyUI::Draw() {
ImGuiWindowFlags_NoInputs)) {
Text("Trophy earned!");
TextWrapped(currentTrophyInfo.trophyName.c_str());
End();
}
End();
}
}
first_render = false;
}

View file

@ -20,7 +20,6 @@ struct TrophyInfo {
};
class TrophyUI final : public ImGui::Layer {
bool first_render{false};
std::vector<TrophyInfo> trophyQueue;
public: