19 lines
516 B
C++
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 |