diff options
author | mingchen | 2007-06-07 14:23:19 +0000 |
---|---|---|
committer | mingchen | 2007-06-07 14:23:19 +0000 |
commit | f88a4777f9e9b23795aed5a7f364a93a73e9ed15 (patch) | |
tree | 7acf567aed35932ae0bcc5410698379bbb6087c0 /OpenSim/OpenSim.RegionServer/ClientView.cs | |
parent | *When avatar crosses parcel, it updates successfully in the viewer (diff) | |
download | opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.zip opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.tar.gz opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.tar.bz2 opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.tar.xz |
*Cleaned up namespaces, filenames, etc in OpenSim.RegionServer
NOTES:
*ClientView is now in the namespace OpenSim.RegionServer.Client
*Scripting is now in the namespace OpenSim.RegionServer.scripting
*Other various cleaning
Diffstat (limited to '')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/Client/ClientView.cs (renamed from OpenSim/OpenSim.RegionServer/ClientView.cs) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/OpenSim.RegionServer/ClientView.cs b/OpenSim/OpenSim.RegionServer/Client/ClientView.cs index 3934567..6d7c3f2 100644 --- a/OpenSim/OpenSim.RegionServer/ClientView.cs +++ b/OpenSim/OpenSim.RegionServer/Client/ClientView.cs | |||
@@ -41,11 +41,11 @@ using OpenSim.Framework.Interfaces; | |||
41 | using OpenSim.Framework.Types; | 41 | using OpenSim.Framework.Types; |
42 | using OpenSim.Framework.Inventory; | 42 | using OpenSim.Framework.Inventory; |
43 | using OpenSim.Framework.Utilities; | 43 | using OpenSim.Framework.Utilities; |
44 | using OpenSim.world; | 44 | using OpenSim.RegionServer.Simulator; |
45 | using OpenSim.Assets; | 45 | using OpenSim.RegionServer.Assets; |
46 | using OpenSim.Framework.Console; | 46 | using OpenSim.Framework.Console; |
47 | 47 | ||
48 | namespace OpenSim | 48 | namespace OpenSim.RegionServer.Client |
49 | { | 49 | { |
50 | public delegate bool PacketMethod(ClientView simClient, Packet packet); | 50 | public delegate bool PacketMethod(ClientView simClient, Packet packet); |
51 | 51 | ||
@@ -62,7 +62,7 @@ namespace OpenSim | |||
62 | public LLUUID SessionID; | 62 | public LLUUID SessionID; |
63 | public LLUUID SecureSessionID = LLUUID.Zero; | 63 | public LLUUID SecureSessionID = LLUUID.Zero; |
64 | public bool m_child; | 64 | public bool m_child; |
65 | public world.Avatar ClientAvatar; | 65 | public Simulator.Avatar ClientAvatar; |
66 | private UseCircuitCodePacket cirpack; | 66 | private UseCircuitCodePacket cirpack; |
67 | public Thread ClientThread; | 67 | public Thread ClientThread; |
68 | public LLVector3 startpos; | 68 | public LLVector3 startpos; |