diff options
author | Justin Clark-Casey (justincc) | 2012-06-29 00:03:22 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-29 00:03:22 +0100 |
commit | f202c36106815949e56c58612770a00c65ab80a3 (patch) | |
tree | 12affb429b04b2d2abd7b3a804b9d71cd647a4e7 /OpenSim/Framework/IScene.cs | |
parent | Change AttachmentsModule.DetachSingleAttachmentToInv() to accept a SOG direct... (diff) | |
download | opensim-SC-f202c36106815949e56c58612770a00c65ab80a3.zip opensim-SC-f202c36106815949e56c58612770a00c65ab80a3.tar.gz opensim-SC-f202c36106815949e56c58612770a00c65ab80a3.tar.bz2 opensim-SC-f202c36106815949e56c58612770a00c65ab80a3.tar.xz |
Add IScene.Name for code clarity to replace the RegionInfo.RegionName used in many, many log messages.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IScene.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/IScene.cs b/OpenSim/Framework/IScene.cs index b2604f4..a9432c2 100644 --- a/OpenSim/Framework/IScene.cs +++ b/OpenSim/Framework/IScene.cs | |||
@@ -56,6 +56,11 @@ namespace OpenSim.Framework | |||
56 | 56 | ||
57 | public interface IScene | 57 | public interface IScene |
58 | { | 58 | { |
59 | /// <summary> | ||
60 | /// The name of this scene. | ||
61 | /// </summary> | ||
62 | string Name { get; } | ||
63 | |||
59 | RegionInfo RegionInfo { get; } | 64 | RegionInfo RegionInfo { get; } |
60 | RegionStatus RegionStatus { get; set; } | 65 | RegionStatus RegionStatus { get; set; } |
61 | 66 | ||