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

21 lines
561 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Subsystems/GameInstanceSubsystem.h"
#include "PresenceSubSystem.generated.h"
class UCommunityGoalWrapper;
class UDiscordWrapper;
UCLASS(Blueprintable)
class UPresenceSubSystem : public UGameInstanceSubsystem {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UDiscordWrapper* DiscordWI;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UCommunityGoalWrapper* CommunityWI;
UPresenceSubSystem();
};