diff options
author | mingchen | 2007-06-11 18:27:07 +0000 |
---|---|---|
committer | mingchen | 2007-06-11 18:27:07 +0000 |
commit | 5c3a4f52f4b4413832a6942aa75a21b157cd48dc (patch) | |
tree | 365f721039c08ecbc57e82dfa24d6f07b6419c25 /Common/OpenSim.Framework/SimProfile.cs | |
parent | *Removed OSVector3 and replaced with libsecondlife.LLVector3 (diff) | |
download | opensim-SC-5c3a4f52f4b4413832a6942aa75a21b157cd48dc.zip opensim-SC-5c3a4f52f4b4413832a6942aa75a21b157cd48dc.tar.gz opensim-SC-5c3a4f52f4b4413832a6942aa75a21b157cd48dc.tar.bz2 opensim-SC-5c3a4f52f4b4413832a6942aa75a21b157cd48dc.tar.xz |
*Removed SimProfileBase from OpenSim (Unused/Depreciated)
*Updated prebuild.xml
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 |