diff options
Diffstat (limited to 'OpenSim/Framework/IConsole.cs')
-rwxr-xr-x | OpenSim/Framework/IConsole.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Framework/IConsole.cs b/OpenSim/Framework/IConsole.cs index 36660f4..ef23cdc 100755 --- a/OpenSim/Framework/IConsole.cs +++ b/OpenSim/Framework/IConsole.cs | |||
@@ -32,11 +32,13 @@ namespace OpenSim.Framework | |||
32 | { | 32 | { |
33 | public interface IConsole | 33 | public interface IConsole |
34 | { | 34 | { |
35 | |||
36 | |||
35 | IScene ConsoleScene { get; set; } | 37 | IScene ConsoleScene { get; set; } |
36 | 38 | ||
39 | void Output(string format); | ||
37 | void Output(string format, params object[] components); | 40 | void Output(string format, params object[] components); |
38 | void Output(string format, string level, params object[] components); | 41 | |
39 | |||
40 | string Prompt(string p); | 42 | string Prompt(string p); |
41 | string Prompt(string p, string def); | 43 | string Prompt(string p, string def); |
42 | string Prompt(string p, List<char> excludedCharacters); | 44 | string Prompt(string p, List<char> excludedCharacters); |