diff options
author | MW | 2007-04-25 13:03:48 +0000 |
---|---|---|
committer | MW | 2007-04-25 13:03:48 +0000 |
commit | f7b51d63a87a6703d7cb8f376d1f3f7ec6ede8a0 (patch) | |
tree | b9f8f1dac346906f1333aa3fc8da704466eda005 /OpenSim.Framework/RemoteGridBase.cs | |
parent | * Added try{}catch{} to RunTerrainCmd (diff) | |
download | opensim-SC_OLD-f7b51d63a87a6703d7cb8f376d1f3f7ec6ede8a0.zip opensim-SC_OLD-f7b51d63a87a6703d7cb8f376d1f3f7ec6ede8a0.tar.gz opensim-SC_OLD-f7b51d63a87a6703d7cb8f376d1f3f7ec6ede8a0.tar.bz2 opensim-SC_OLD-f7b51d63a87a6703d7cb8f376d1f3f7ec6ede8a0.tar.xz |
Small clean up of files and directories
Diffstat (limited to '')
-rw-r--r-- | OpenSim.Framework/Interfaces/RemoteGridBase.cs (renamed from OpenSim.Framework/RemoteGridBase.cs) | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/OpenSim.Framework/RemoteGridBase.cs b/OpenSim.Framework/Interfaces/RemoteGridBase.cs index 0b72b9f..f24ec66 100644 --- a/OpenSim.Framework/RemoteGridBase.cs +++ b/OpenSim.Framework/Interfaces/RemoteGridBase.cs | |||
@@ -1,8 +1,9 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections; | 2 | using System.Collections; |
3 | using System.Collections.Generic; | 3 | using System.Collections.Generic; |
4 | using System.Text; | 4 | using System.Text; |
5 | using libsecondlife; | 5 | using libsecondlife; |
6 | using OpenSim.Framework.Types; | ||
6 | 7 | ||
7 | namespace OpenSim.Framework.Interfaces | 8 | namespace OpenSim.Framework.Interfaces |
8 | { | 9 | { |
@@ -22,14 +23,14 @@ namespace OpenSim.Framework.Interfaces | |||
22 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); | 23 | public abstract bool RequestConnection(LLUUID SimUUID, string sim_ip, uint sim_port); |
23 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); | 24 | public abstract void SetServerInfo(string ServerUrl, string SendKey, string RecvKey); |
24 | public abstract void Close(); | 25 | public abstract void Close(); |
25 | public abstract Hashtable GridData { | 26 | public abstract Hashtable GridData { |
26 | get; | 27 | get; |
27 | set; | 28 | set; |
28 | } | 29 | } |
29 | 30 | ||
30 | public abstract ArrayList neighbours { | 31 | public abstract ArrayList neighbours { |
31 | get; | 32 | get; |
32 | set; | 33 | set; |
33 | } | 34 | } |
34 | } | 35 | } |
35 | } | 36 | } |