diff options
author | Justin Clark-Casey (justincc) | 2012-10-09 01:40:40 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-09 01:40:55 +0100 |
commit | ef3cc2e507a545bfcffc804015ee3ec5b8a260e0 (patch) | |
tree | d858540688c43c7243e8f07ea1b868f832d07cc8 /OpenSim/Services/Interfaces | |
parent | Once again, forgot to add a file. (diff) | |
download | opensim-SC_OLD-ef3cc2e507a545bfcffc804015ee3ec5b8a260e0.zip opensim-SC_OLD-ef3cc2e507a545bfcffc804015ee3ec5b8a260e0.tar.gz opensim-SC_OLD-ef3cc2e507a545bfcffc804015ee3ec5b8a260e0.tar.bz2 opensim-SC_OLD-ef3cc2e507a545bfcffc804015ee3ec5b8a260e0.tar.xz |
minor: Add documentation to IGridService.GetRegionFlags()
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IGridService.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs index d809996..d7da056 100644 --- a/OpenSim/Services/Interfaces/IGridService.cs +++ b/OpenSim/Services/Interfaces/IGridService.cs | |||
@@ -100,6 +100,19 @@ namespace OpenSim.Services.Interfaces | |||
100 | List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y); | 100 | List<GridRegion> GetFallbackRegions(UUID scopeID, int x, int y); |
101 | List<GridRegion> GetHyperlinks(UUID scopeID); | 101 | List<GridRegion> GetHyperlinks(UUID scopeID); |
102 | 102 | ||
103 | /// <summary> | ||
104 | /// Get internal OpenSimulator region flags. | ||
105 | /// </summary> | ||
106 | /// <remarks> | ||
107 | /// See OpenSimulator.Framework.RegionFlags. These are not returned in the GridRegion structure - | ||
108 | /// they currently need to be requested separately. Possibly this should change to avoid multiple service calls | ||
109 | /// in some situations. | ||
110 | /// </remarks> | ||
111 | /// <returns> | ||
112 | /// The region flags. | ||
113 | /// </returns> | ||
114 | /// <param name='scopeID'></param> | ||
115 | /// <param name='regionID'></param> | ||
103 | int GetRegionFlags(UUID scopeID, UUID regionID); | 116 | int GetRegionFlags(UUID scopeID, UUID regionID); |
104 | } | 117 | } |
105 | 118 | ||