19 lines
318 B
C
19 lines
318 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"
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
UCLASS(Blueprintable)
|
|||
|
|
class DEDICATEDSERVERS_API UHTTPRequestManager : public UObject
|
|||
|
|
{
|
|||
|
|
GENERATED_BODY()
|
|||
|
|
|
|||
|
|
|
|||
|
|
};
|