aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.GridInterfaces/Local/LocalGridServer.cs
diff options
context:
space:
mode:
authormorphw2007-05-20 02:35:23 +0000
committermorphw2007-05-20 02:35:23 +0000
commita0607dadaf0f5be4262b48829f3a64daef965c8c (patch)
treedbdcd25fab016c71e287de4cf45e59c4984ee754 /OpenSim.GridInterfaces/Local/LocalGridServer.cs
parentAdd RequestMapBlocks method to GridServer interfaces (diff)
downloadopensim-SC_OLD-a0607dadaf0f5be4262b48829f3a64daef965c8c.zip
opensim-SC_OLD-a0607dadaf0f5be4262b48829f3a64daef965c8c.tar.gz
opensim-SC_OLD-a0607dadaf0f5be4262b48829f3a64daef965c8c.tar.bz2
opensim-SC_OLD-a0607dadaf0f5be4262b48829f3a64daef965c8c.tar.xz
Add RequestMapBlocks to local and remote interfaces
Diffstat (limited to '')
-rw-r--r--OpenSim.GridInterfaces/Local/LocalGridServer.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim.GridInterfaces/Local/LocalGridServer.cs b/OpenSim.GridInterfaces/Local/LocalGridServer.cs
index 622eb53..fdd6ba4 100644
--- a/OpenSim.GridInterfaces/Local/LocalGridServer.cs
+++ b/OpenSim.GridInterfaces/Local/LocalGridServer.cs
@@ -34,6 +34,7 @@ using OpenSim.Framework.Console;
34using libsecondlife; 34using libsecondlife;
35using Db4objects.Db4o; 35using Db4objects.Db4o;
36using Db4objects.Db4o.Query; 36using Db4objects.Db4o.Query;
37using System.Collections;
37 38
38namespace OpenSim.GridInterfaces.Local 39namespace OpenSim.GridInterfaces.Local
39{ 40{
@@ -114,6 +115,12 @@ namespace OpenSim.GridInterfaces.Local
114 { 115 {
115 116
116 } 117 }
118
119 public override IList RequestMapBlocks(int minX, int minY, int maxX, int maxY)
120 {
121 return new ArrayList();
122 }
123
117 124
118 public override void Close() 125 public override void Close()
119 { 126 {