Files
Naked-Desire/Source/NakedDesire/Commissions/Objectives/StayUnseenWhileNakedObjective.cpp
T
2026-06-03 15:17:02 +03:00

19 lines
516 B
C++

// © 2025 Naked People Team. All Rights Reserved.
#include "StayUnseenWhileNakedObjective.h"
#define LOCTEXT_NAMESPACE "Commissions.Objectives.StayUnseenWhileNaked"
FText UStayUnseenWhileNakedObjective::GetDescription() const
{
if (RequiredHoldSeconds > 0.0f)
{
return FText::Format(LOCTEXT("Timed", "Stay fully naked and unseen for {0} seconds"),
FText::AsNumber(FMath::RoundToInt(RequiredHoldSeconds)));
}
return LOCTEXT("Instant", "Be fully naked with nobody watching");
}
#undef LOCTEXT_NAMESPACE