24 lines
403 B
C++
24 lines
403 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "HTTPRequestManager.generated.h"
|
|
|
|
class UAPIData;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Blueprintable)
|
|
class DEDICATEDSERVERS_API UHTTPRequestManager : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
protected:
|
|
|
|
UPROPERTY(EditDefaultsOnly)
|
|
TObjectPtr<UAPIData> APIData;
|
|
};
|