mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
Massive console refactor. Greatly simplify interface.
This commit is contained in:
14
OpenSim/Framework/Console/MockConsole.cs
Normal file → Executable file
14
OpenSim/Framework/Console/MockConsole.cs
Normal file → Executable file
@@ -56,21 +56,17 @@ namespace OpenSim.Framework.Console
|
||||
|
||||
public string ReadLine(string p, bool isCommand, bool e) { return ""; }
|
||||
|
||||
public object ConsoleScene {
|
||||
public IScene ConsoleScene {
|
||||
get { return null; }
|
||||
set {}
|
||||
}
|
||||
|
||||
public void Output(string text, string level) {}
|
||||
public void Output(string text) {}
|
||||
public void OutputFormat(string format, params object[] components) {}
|
||||
public void Output(string format, string level, params object[] components) {}
|
||||
|
||||
public string CmdPrompt(string p) { return ""; }
|
||||
public string CmdPrompt(string p, string def) { return ""; }
|
||||
public string CmdPrompt(string p, List<char> excludedCharacters) { return ""; }
|
||||
public string CmdPrompt(string p, string def, List<char> excludedCharacters) { return ""; }
|
||||
public string Prompt(string p) { return ""; }
|
||||
public string Prompt(string p, string def, List<char> excludedCharacters, bool echo) { return ""; }
|
||||
|
||||
public string CmdPrompt(string prompt, string defaultresponse, List<string> options) { return ""; }
|
||||
public string Prompt(string prompt, string defaultresponse, List<string> options) { return ""; }
|
||||
|
||||
public string PasswdPrompt(string p) { return ""; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user