Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Turnkey/IOProvider.cs
Josh Adams c39ce85151 - Fixed Turnkey copyrights
- Latest changes

[CL 13345289 by Josh Adams in ue5-main branch]
2020-05-18 18:03:04 -04:00

25 lines
629 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Turnkey
{
abstract class IOProvider
{
public abstract void Log(string Message, bool bAppendNewLine);
public virtual void Report(string Message, bool bAppendNewLine)
{
Log(Message, bAppendNewLine);
}
public abstract string ReadInput(string Prompt, string DefaultValue, bool bAppendNewLine);
public abstract int ReadInputInt(string Prompt, List<string> Options, bool bIsCancellable, int DefaultValue, bool bAppendNewLine);
}
}