diff options
author | MW | 2007-05-26 13:40:19 +0000 |
---|---|---|
committer | MW | 2007-05-26 13:40:19 +0000 |
commit | 3436961bb5c01d659d09be134368f4f69460cef9 (patch) | |
tree | 3753ba4d7818df2a6bce0bbe863ff033cdfd568a /Common/OpenSim.Framework/SimProfileBase.cs | |
download | opensim-SC-3436961bb5c01d659d09be134368f4f69460cef9.zip opensim-SC-3436961bb5c01d659d09be134368f4f69460cef9.tar.gz opensim-SC-3436961bb5c01d659d09be134368f4f69460cef9.tar.bz2 opensim-SC-3436961bb5c01d659d09be134368f4f69460cef9.tar.xz |
Start of rewrite 5279!
Diffstat (limited to 'Common/OpenSim.Framework/SimProfileBase.cs')
-rw-r--r-- | Common/OpenSim.Framework/SimProfileBase.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/SimProfileBase.cs b/Common/OpenSim.Framework/SimProfileBase.cs new file mode 100644 index 0000000..30e2e0f --- /dev/null +++ b/Common/OpenSim.Framework/SimProfileBase.cs | |||
@@ -0,0 +1,27 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework.Sims | ||
7 | { | ||
8 | [System.Obsolete("Depreciated, use SimProfileData instead")] | ||
9 | public class SimProfileBase | ||
10 | { | ||
11 | public LLUUID UUID; | ||
12 | public ulong regionhandle; | ||
13 | public string regionname; | ||
14 | public string sim_ip; | ||
15 | public uint sim_port; | ||
16 | public string caps_url; | ||
17 | public uint RegionLocX; | ||
18 | public uint RegionLocY; | ||
19 | public string sendkey; | ||
20 | public string recvkey; | ||
21 | public bool online; | ||
22 | |||
23 | public SimProfileBase() | ||
24 | { | ||
25 | } | ||
26 | } | ||
27 | } | ||