aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs
diff options
context:
space:
mode:
authorUbitUmarov2015-08-22 13:41:45 +0100
committerUbitUmarov2015-08-22 13:41:45 +0100
commitd22d46ee96f7ba0e15e4bc96581ffd316f4797d5 (patch)
tree5058f8a244342bd486be49d593c97419574cf307 /OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs
parentfix worldMapModule (diff)
downloadopensim-SC_OLD-d22d46ee96f7ba0e15e4bc96581ffd316f4797d5.zip
opensim-SC_OLD-d22d46ee96f7ba0e15e4bc96581ffd316f4797d5.tar.gz
opensim-SC_OLD-d22d46ee96f7ba0e15e4bc96581ffd316f4797d5.tar.bz2
opensim-SC_OLD-d22d46ee96f7ba0e15e4bc96581ffd316f4797d5.tar.xz
update MapSearchModule
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs b/OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs
index 65c57a6..e9cf4ad 100644
--- a/OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IWorldMapModule.cs
@@ -24,6 +24,9 @@
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27using System.Collections.Generic;
28using OpenSim.Framework;
29using OpenSim.Services.Interfaces;
27 30
28namespace OpenSim.Region.Framework.Interfaces 31namespace OpenSim.Region.Framework.Interfaces
29{ 32{
@@ -33,5 +36,7 @@ namespace OpenSim.Region.Framework.Interfaces
33 /// Generate a map tile for the scene. a terrain texture for this scene 36 /// Generate a map tile for the scene. a terrain texture for this scene
34 /// </summary> 37 /// </summary>
35 void GenerateMaptile(); 38 void GenerateMaptile();
39 List<MapBlockData> Map2BlockFromGridRegion(GridRegion r, uint flag);
40 void MapBlockFromGridRegion(MapBlockData block, GridRegion r, uint flag);
36 } 41 }
37} 42}