diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AgentUpdateArgs.cs | 21 |
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 @@ | |||
1 | using System; | ||
2 | using libsecondlife; | ||
3 | |||
4 | namespace 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 | ||