aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorDiva Canto2009-12-31 09:25:16 -0800
committerDiva Canto2009-12-31 09:25:16 -0800
commita8901a40f4526720f68049706cabd34cf9717172 (patch)
treef64b2d8eed119e8080e3d696e4e822b55f0f5882 /OpenSim/Services/Interfaces
parentNo-op. (diff)
downloadopensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.zip
opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.tar.gz
opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.tar.bz2
opensim-SC_OLD-a8901a40f4526720f68049706cabd34cf9717172.tar.xz
Simulation handlers (agents & objects) completed.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/ISimulationService.cs10
1 files changed, 3 insertions, 7 deletions
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs
index a169ab7..7ba3e66 100644
--- a/OpenSim/Services/Interfaces/ISimulationService.cs
+++ b/OpenSim/Services/Interfaces/ISimulationService.cs
@@ -33,9 +33,11 @@ namespace OpenSim.Services.Interfaces
33{ 33{
34 public interface ISimulationService 34 public interface ISimulationService
35 { 35 {
36 IScene GetScene(ulong regionHandle);
37
36 #region Agents 38 #region Agents
37 39
38 bool CreateAgent(ulong regionHandle, AgentCircuitData aCircuit, out string reason); 40 bool CreateAgent(ulong regionHandle, AgentCircuitData aCircuit, uint flags, out string reason);
39 41
40 /// <summary> 42 /// <summary>
41 /// Full child agent update. 43 /// Full child agent update.
@@ -98,11 +100,5 @@ namespace OpenSim.Services.Interfaces
98 100
99 #endregion Objects 101 #endregion Objects
100 102
101 #region Regions
102
103 bool HelloNeighbour(ulong regionHandle, RegionInfo thisRegion);
104
105 #endregion Regions
106
107 } 103 }
108} 104}