21 lines
561 B
C++
Executable file
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();
|
|
};
|
|
|