aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs
diff options
context:
space:
mode:
authorteravus2013-02-03 06:49:17 -0500
committerteravus2013-02-03 06:49:17 -0500
commit27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a (patch)
tree13d597bd5a621b1b3a0d104fd870c4416aafcfe3 /OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs
parentSit and Spin reduction. If sitting, slam avatar angular velocity to zero. (diff)
downloadopensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.zip
opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.tar.gz
opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.tar.bz2
opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.tar.xz
Commit 1 in of this branch feature. This is one of many...
Diffstat (limited to 'OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs')
-rw-r--r--OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs b/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs
new file mode 100644
index 0000000..32880cc
--- /dev/null
+++ b/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs
@@ -0,0 +1,17 @@
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Net.Sockets;
5using System.Text;
6
7namespace OpenSim.Region.ClientStack.TCPJSONStream
8{
9 public class DisconnectedEventArgs:EventArgs
10 {
11 public SocketError Error { get; private set; }
12 public DisconnectedEventArgs(SocketError err)
13 {
14 Error = err;
15 }
16 }
17}