22 lines
545 B
C++
Executable file
22 lines
545 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "UObject/Object.h"
|
|
#include "FSDEventsHandler.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFSDEventsHandler : public UObject {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
FDateTime LastRequestTime;
|
|
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
int32 NumFailedRequests;
|
|
|
|
public:
|
|
UFSDEventsHandler();
|
|
};
|
|
|