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

21 lines
472 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "DLCBase.h"
#include "TimedDLC.generated.h"
UCLASS(Blueprintable)
class UTimedDLC : public UDLCBase {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FDateTime StartDate;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FDateTime EndDate;
public:
UTimedDLC();
};