You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #rnx #ROBOMERGE-OWNER: jason.bestimt #ROBOMERGE-AUTHOR: ryan.gerleve #ROBOMERGE-SOURCE: CL 4804559 in //UE4/Main/... #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 4804563 by ryan gerleve in Dev-VR branch]
23 lines
464 B
C++
23 lines
464 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "UObject/Object.h"
|
|
#include "PacketHandlerProfileConfig.generated.h"
|
|
|
|
/**
|
|
* PacketHandler Configuration Profiles based on each NetDriver
|
|
*/
|
|
UCLASS(config=Engine, PerObjectConfig)
|
|
class UPacketHandlerProfileConfig : public UObject
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
|
|
UPROPERTY(config)
|
|
TArray<FString> Components;
|
|
};
|