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

23 lines
483 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Engine/DataAsset.h"
#include "DLCBase.generated.h"
class UDLCBase;
UCLASS(Blueprintable)
class FSD_API UDLCBase : public UDataAsset {
GENERATED_BODY()
public:
UDLCBase();
UFUNCTION(BlueprintCallable)
static void QueryAllDLC();
UFUNCTION(BlueprintCallable, BlueprintPure)
bool IsUnlocked() const;
UFUNCTION(BlueprintCallable, BlueprintPure)
static bool IsDLCUnLocked(UDLCBase* dlc);
};