diff options
author | MW | 2007-06-15 13:11:26 +0000 |
---|---|---|
committer | MW | 2007-06-15 13:11:26 +0000 |
commit | 95676b298819d6b2d1df74d1f52668e2549a2c2f (patch) | |
tree | e3152f0685f262253e72a482a4a3e4b64aae631a /OpenSim/OpenSim.RegionServer/PacketServer.cs | |
parent | and some more (diff) | |
download | opensim-SC_OLD-95676b298819d6b2d1df74d1f52668e2549a2c2f.zip opensim-SC_OLD-95676b298819d6b2d1df74d1f52668e2549a2c2f.tar.gz opensim-SC_OLD-95676b298819d6b2d1df74d1f52668e2549a2c2f.tar.bz2 opensim-SC_OLD-95676b298819d6b2d1df74d1f52668e2549a2c2f.tar.xz |
Preliminary movement added to sugilite, forwards walking only and no animations.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/PacketServer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.RegionServer/PacketServer.cs b/OpenSim/OpenSim.RegionServer/PacketServer.cs index f0bf44f..229570c 100644 --- a/OpenSim/OpenSim.RegionServer/PacketServer.cs +++ b/OpenSim/OpenSim.RegionServer/PacketServer.cs | |||
@@ -40,13 +40,13 @@ namespace OpenSim | |||
40 | { | 40 | { |
41 | public class PacketServer | 41 | public class PacketServer |
42 | { | 42 | { |
43 | private OpenSimNetworkHandler _networkHandler; | 43 | private ClientStackNetworkHandler _networkHandler; |
44 | private IWorld _localWorld; | 44 | private IWorld _localWorld; |
45 | public Dictionary<uint, ClientView> ClientThreads = new Dictionary<uint, ClientView>(); | 45 | public Dictionary<uint, ClientView> ClientThreads = new Dictionary<uint, ClientView>(); |
46 | public Dictionary<uint, IClientAPI> ClientAPIs = new Dictionary<uint, IClientAPI>(); | 46 | public Dictionary<uint, IClientAPI> ClientAPIs = new Dictionary<uint, IClientAPI>(); |
47 | protected uint serverPort; | 47 | protected uint serverPort; |
48 | 48 | ||
49 | public PacketServer(OpenSimNetworkHandler networkHandler, uint port) | 49 | public PacketServer(ClientStackNetworkHandler networkHandler, uint port) |
50 | { | 50 | { |
51 | _networkHandler = networkHandler; | 51 | _networkHandler = networkHandler; |
52 | this.serverPort = port; | 52 | this.serverPort = port; |