mirror of
https://github.com/opensim/opensim.git
synced 2026-06-29 18:55:37 +08:00
minor: Add documentation to IGridService.GetRegionFlags()
This commit is contained in:
@@ -34,6 +34,7 @@ namespace OpenSim.Framework
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Don't confuse with OpenMetaverse.RegionFlags which are client facing flags (i.e. they go over the wire).
|
||||
/// Returned by IGridService.GetRegionFlags()
|
||||
/// </remarks>
|
||||
[Flags]
|
||||
public enum RegionFlags : int
|
||||
|
||||
@@ -100,6 +100,19 @@ namespace OpenSim.Services.Interfaces
|
||||
List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y);
|
||||
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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user