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

This commit is contained in:
UbitUmarov
2019-09-21 16:35:38 +01:00
parent d7bf623f57
commit b046ccebf2
3 changed files with 9 additions and 4 deletions

View File

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