aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rwxr-xr-xOpenSim/Framework/IConsole.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Framework/IConsole.cs b/OpenSim/Framework/IConsole.cs
index 22f62df..36660f4 100755
--- a/OpenSim/Framework/IConsole.cs
+++ b/OpenSim/Framework/IConsole.cs
@@ -34,9 +34,13 @@ namespace OpenSim.Framework
34 { 34 {
35 IScene ConsoleScene { get; set; } 35 IScene ConsoleScene { get; set; }
36 36
37 void Output(string format, string level = null, params object[] components); 37 void Output(string format, params object[] components);
38 void Output(string format, string level, params object[] components);
38 39
39 string Prompt(string p, string def = null, List<char> excludedCharacters = null, bool echo = true); 40 string Prompt(string p);
41 string Prompt(string p, string def);
42 string Prompt(string p, List<char> excludedCharacters);
43 string Prompt(string p, string def, List<char> excludedCharacters, bool echo = true);
40 44
41 // Displays a prompt and returns a default value, user may only enter 1 of 2 options 45 // Displays a prompt and returns a default value, user may only enter 1 of 2 options
42 string Prompt(string prompt, string defaultresponse, List<string> options); 46 string Prompt(string prompt, string defaultresponse, List<string> options);