aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IScene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-06-29 00:03:22 +0100
committerJustin Clark-Casey (justincc)2012-06-29 00:03:22 +0100
commitf202c36106815949e56c58612770a00c65ab80a3 (patch)
tree12affb429b04b2d2abd7b3a804b9d71cd647a4e7 /OpenSim/Framework/IScene.cs
parentChange AttachmentsModule.DetachSingleAttachmentToInv() to accept a SOG direct... (diff)
downloadopensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.zip
opensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.tar.gz
opensim-SC_OLD-f202c36106815949e56c58612770a00c65ab80a3.tar.bz2
opensim-SC_OLD-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.cs5
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