From 39aa27af2b1294e313a53d33b4039e526643e75e Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 24 Sep 2019 00:26:59 +0100 Subject: [PATCH] missing file --- OpenSim/Framework/IConsole.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/IConsole.cs b/OpenSim/Framework/IConsole.cs index 22f62df3dc..36660f4b51 100755 --- a/OpenSim/Framework/IConsole.cs +++ b/OpenSim/Framework/IConsole.cs @@ -34,9 +34,13 @@ namespace OpenSim.Framework { IScene ConsoleScene { get; set; } - void Output(string format, string level = null, params object[] components); + void Output(string format, params object[] components); + void Output(string format, string level, params object[] components); - string Prompt(string p, string def = null, List excludedCharacters = null, bool echo = true); + string Prompt(string p); + string Prompt(string p, string def); + string Prompt(string p, List excludedCharacters); + string Prompt(string p, string def, List excludedCharacters, bool echo = true); // Displays a prompt and returns a default value, user may only enter 1 of 2 options string Prompt(string prompt, string defaultresponse, List options);