17 lines
312 B
C++
17 lines
312 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UI/HTTP/HTTPRequestManager.h"
|
|
#include "PortalManager.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class DEDICATEDSERVERS_API UPortalManager : public UHTTPRequestManager
|
|
{
|
|
GENERATED_BODY()
|
|
};
|