DRG-Femboy-Voice/Source/FSD/Public/HackingUsableState.h
2025-04-15 12:39:31 -07:00

23 lines
628 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "HackingUsableState.generated.h"
class AHackingToolItem;
class APlayerCharacter;
USTRUCT(BlueprintType)
struct FHackingUsableState {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool bIsHacked;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TWeakObjectPtr<AHackingToolItem> BeingHackedByItem;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TWeakObjectPtr<APlayerCharacter> HackedBy;
FSD_API FHackingUsableState();
};