mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
minor: Add documentation to IGridService.GetRegionFlags()
This commit is contained in:
@@ -34,6 +34,7 @@ namespace OpenSim.Framework
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Don't confuse with OpenMetaverse.RegionFlags which are client facing flags (i.e. they go over the wire).
|
/// Don't confuse with OpenMetaverse.RegionFlags which are client facing flags (i.e. they go over the wire).
|
||||||
|
/// Returned by IGridService.GetRegionFlags()
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum RegionFlags : int
|
public enum RegionFlags : int
|
||||||
|
|||||||
@@ -100,6 +100,19 @@ namespace OpenSim.Services.Interfaces
|
|||||||
List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y);
|
List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y);
|
||||||
List<GridRegion> GetHyperlinks(UUID scopeID);
|
List<GridRegion> GetHyperlinks(UUID scopeID);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get internal OpenSimulator region flags.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// See OpenSimulator.Framework.RegionFlags. These are not returned in the GridRegion structure -
|
||||||
|
/// they currently need to be requested separately. Possibly this should change to avoid multiple service calls
|
||||||
|
/// in some situations.
|
||||||
|
/// </remarks>
|
||||||
|
/// <returns>
|
||||||
|
/// The region flags.
|
||||||
|
/// </returns>
|
||||||
|
/// <param name='scopeID'></param>
|
||||||
|
/// <param name='regionID'></param>
|
||||||
int GetRegionFlags(UUID scopeID, UUID regionID);
|
int GetRegionFlags(UUID scopeID, UUID regionID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user