aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentUpdateArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/AgentUpdateArgs.cs')
-rw-r--r--OpenSim/Framework/AgentUpdateArgs.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/OpenSim/Framework/AgentUpdateArgs.cs b/OpenSim/Framework/AgentUpdateArgs.cs
new file mode 100644
index 0000000..8709434
--- /dev/null
+++ b/OpenSim/Framework/AgentUpdateArgs.cs
@@ -0,0 +1,21 @@
1using System;
2using libsecondlife;
3
4namespace OpenSim.Framework
5{
6 public class AgentUpdateArgs : EventArgs
7 {
8 public LLUUID AgentID;
9 public LLQuaternion BodyRotation;
10 public LLVector3 CameraAtAxis;
11 public LLVector3 CameraCenter;
12 public LLVector3 CameraLeftAxis;
13 public LLVector3 CameraUpAxis;
14 public uint ControlFlags;
15 public float Far;
16 public byte Flags;
17 public LLQuaternion HeadRotation;
18 public LLUUID SessionID;
19 public byte State;
20 }
21} \ No newline at end of file