diff options
Diffstat (limited to 'Common/OpenSim.Framework/SimProfile.cs')
-rw-r--r-- | Common/OpenSim.Framework/SimProfile.cs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Common/OpenSim.Framework/SimProfile.cs b/Common/OpenSim.Framework/SimProfile.cs index 2e37e02..cfa5e50 100644 --- a/Common/OpenSim.Framework/SimProfile.cs +++ b/Common/OpenSim.Framework/SimProfile.cs | |||
@@ -35,8 +35,20 @@ using Nwc.XmlRpc; | |||
35 | 35 | ||
36 | namespace OpenSim.Framework.Sims | 36 | namespace OpenSim.Framework.Sims |
37 | { | 37 | { |
38 | public class SimProfile : SimProfileBase | 38 | public class SimProfile |
39 | { | 39 | { |
40 | public LLUUID UUID; | ||
41 | public ulong regionhandle; | ||
42 | public string regionname; | ||
43 | public string sim_ip; | ||
44 | public uint sim_port; | ||
45 | public string caps_url; | ||
46 | public uint RegionLocX; | ||
47 | public uint RegionLocY; | ||
48 | public string sendkey; | ||
49 | public string recvkey; | ||
50 | public bool online; | ||
51 | |||
40 | public SimProfile LoadFromGrid(ulong region_handle, string GridURL, string SendKey, string RecvKey) | 52 | public SimProfile LoadFromGrid(ulong region_handle, string GridURL, string SendKey, string RecvKey) |
41 | { | 53 | { |
42 | try | 54 | try |