Files
UnrealEngine/Engine/Source/Runtime/Online/HTTPServer/Public/HttpResultCallback.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
373 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "HttpServerResponse.h"
/**
* FHttpResultCallback
* This callback is intended to be invoked exclusively by FHttpRequestHandler delegates
*
* @param Response The response to write
*/
typedef TFunction<void(TUniquePtr<FHttpServerResponse>&& Response)> FHttpResultCallback;