Files
UnrealEngineUWP/Engine/Source/Programs/nDisplayLauncher/Cluster/Config/Entity/EntityViewport.cs
T

33 lines
454 B
C#
Raw Normal View History

2019-12-26 23:01:54 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using nDisplayLauncher.Log;
namespace nDisplayLauncher.Cluster.Config.Entity
{
public class EntityViewport : EntityBase
{
public EntityViewport()
{
}
public EntityViewport(string text)
{
try
{
InitializeFromText(text);
}
catch (Exception ex)
{
AppLogger.Log(ex.Message);
}
}
public override void InitializeFromText(string text)
{
}
}
}