diff options
Some more code refactoring, plus a restructuring of the directories so that the Grid servers can be a separate solution to the region server.
Diffstat (limited to 'OpenSim.Framework/SimProfileBase.cs')
-rw-r--r-- | OpenSim.Framework/SimProfileBase.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/OpenSim.Framework/SimProfileBase.cs b/OpenSim.Framework/SimProfileBase.cs deleted file mode 100644 index 30e2e0f..0000000 --- a/OpenSim.Framework/SimProfileBase.cs +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
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 | } | ||