diff options
author | UbitUmarov | 2019-10-22 11:55:27 +0100 |
---|---|---|
committer | UbitUmarov | 2019-10-22 11:55:27 +0100 |
commit | 7939974d921064d4316b5143e3eb45d3e99abf33 (patch) | |
tree | 548394800d2538bb4ddeb26c45fcd16751b53143 /OpenSim/Framework/IConsole.cs | |
parent | a few changes on osslEnable.ini (diff) | |
download | opensim-SC-7939974d921064d4316b5143e3eb45d3e99abf33.zip opensim-SC-7939974d921064d4316b5143e3eb45d3e99abf33.tar.gz opensim-SC-7939974d921064d4316b5143e3eb45d3e99abf33.tar.bz2 opensim-SC-7939974d921064d4316b5143e3eb45d3e99abf33.tar.xz |
try to fix console AGAIN
Diffstat (limited to '')
-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); |