Files
UnrealEngineUWP/Engine/Source/Programs/nDisplayLauncher/Config/Camera.cs
Ryan Gerleve ac280888a0 Merging //UE4/Dev-Main to Dev-Networking (//UE4/Dev-Networking)
#rb none
#rnx

[CL 4175728 by Ryan Gerleve in Dev-Networking branch]
2018-06-29 20:48:58 -04:00

19 lines
393 B
C#

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nDisplayLauncher.Config
{
class Camera
{
public string id { get; set; }
public string locationX { get; set; }
public string locationY { get; set; }
public string locationZ { get; set; }
}
}