Added commissions system

This commit is contained in:
2026-06-01 00:27:56 +03:00
parent dd7ed121fc
commit 9a5a0003b1
81 changed files with 2418 additions and 1065 deletions
@@ -0,0 +1,19 @@
// © 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