added main and pause menus

This commit is contained in:
2026-06-05 20:00:33 +03:00
parent 0792f7cdfd
commit 61d5a57d8d
53 changed files with 1402 additions and 49 deletions
@@ -0,0 +1,26 @@
// © 2025 Naked People Team. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "CommonActivatableWidget.h"
#include "CreditsWidget.generated.h"
class UButton;
// Credits screen. Pushed onto a stack by the menu; the Back button closes it.
UCLASS(Abstract)
class NAKEDDESIRE_API UCreditsWidget : public UCommonActivatableWidget
{
GENERATED_BODY()
protected:
virtual void NativeOnActivated() override;
private:
UPROPERTY(meta = (BindWidget))
TObjectPtr<UButton> BackButton;
UFUNCTION()
void HandleBackClicked();
};