20 lines
623 B
C++
20 lines
623 B
C++
// © 2025 Naked People Team. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "CoverageObjectiveBase.h"
|
|
#include "StayUnseenWhileNakedObjective.generated.h"
|
|
|
|
// Stealth exhibitionism: be fully naked with ZERO observers for the duration (streak between patrols).
|
|
UCLASS(EditInlineNew, DisplayName = "Stay Unseen While Naked")
|
|
class NAKEDDESIRE_API UStayUnseenWhileNakedObjective : public UCoverageObjectiveBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
virtual FText GetDescription() const override;
|
|
|
|
protected:
|
|
virtual bool IsConditionMet() const override { return IsFullyNaked() && GetObserverCount() == 0; }
|
|
}; |