aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/ISimulationService.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs
index 7940256..a963b8e 100644
--- a/OpenSim/Services/Interfaces/ISimulationService.cs
+++ b/OpenSim/Services/Interfaces/ISimulationService.cs
@@ -35,7 +35,17 @@ namespace OpenSim.Services.Interfaces
35{ 35{
36 public interface ISimulationService 36 public interface ISimulationService
37 { 37 {
38 IScene GetScene(ulong regionHandle); 38 /// <summary>
39 /// Retrieve the scene with the given region ID.
40 /// </summary>
41 /// <param name='regionId'>
42 /// Region identifier.
43 /// </param>
44 /// <returns>
45 /// The scene.
46 /// </returns>
47 IScene GetScene(UUID regionId);
48
39 ISimulationService GetInnerService(); 49 ISimulationService GetInnerService();
40 50
41 #region Agents 51 #region Agents
@@ -108,16 +118,6 @@ namespace OpenSim.Services.Interfaces
108 /// <returns></returns> 118 /// <returns></returns>
109 bool CreateObject(GridRegion destination, Vector3 newPosition, ISceneObject sog, bool isLocalCall); 119 bool CreateObject(GridRegion destination, Vector3 newPosition, ISceneObject sog, bool isLocalCall);
110 120
111 /// <summary>
112 /// Create an object from the user's inventory in the destination region.
113 /// This message is used primarily by clients.
114 /// </summary>
115 /// <param name="regionHandle"></param>
116 /// <param name="userID"></param>
117 /// <param name="itemID"></param>
118 /// <returns></returns>
119 bool CreateObject(GridRegion destination, UUID userID, UUID itemID);
120
121 #endregion Objects 121 #endregion Objects
122 122
123 } 123 }