Simulation handlers (agents & objects) completed.

This commit is contained in:
Diva Canto
2009-12-31 09:25:16 -08:00
parent af29999d7d
commit a8901a40f4
8 changed files with 572 additions and 20 deletions

View File

@@ -33,9 +33,11 @@ namespace OpenSim.Services.Interfaces
{
public interface ISimulationService
{
IScene GetScene(ulong regionHandle);
#region Agents
bool CreateAgent(ulong regionHandle, AgentCircuitData aCircuit, out string reason);
bool CreateAgent(ulong regionHandle, AgentCircuitData aCircuit, uint flags, out string reason);
/// <summary>
/// Full child agent update.
@@ -98,11 +100,5 @@ namespace OpenSim.Services.Interfaces
#endregion Objects
#region Regions
bool HelloNeighbour(ulong regionHandle, RegionInfo thisRegion);
#endregion Regions
}
}