make Console Promt(..) compatible with rest of code, again

This commit is contained in:
UbitUmarov
2019-09-21 16:59:41 +01:00
parent b046ccebf2
commit 43b56eaf08
2 changed files with 18 additions and 1 deletions

View File

@@ -66,6 +66,8 @@ namespace OpenSim.Framework.Console
public void Output(string format, string level, params object[] components) { }
public string Prompt(string p) { return ""; }
public string Prompt(string p, string def) { return ""; }
public string Prompt(string p, List<char> excludedCharacters) { return ""; }
public string Prompt(string p, string def, List<char> excludedCharacters, bool echo) { return ""; }
public string Prompt(string prompt, string defaultresponse, List<string> options) { return ""; }