aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie2010-01-16 00:15:26 +0000
committerMelanie2010-01-16 00:15:26 +0000
commit8c39392eaa76fd5fad37368675d1463ad6c69195 (patch)
treeda3e872c13d48a7bd6735b351c8b7a0f8a97d77d /OpenSim/Framework
parentAllow renaming of items that contain no-mod items (diff)
parentAdd "create user" instructions to README.txt (diff)
downloadopensim-SC_OLD-8c39392eaa76fd5fad37368675d1463ad6c69195.zip
opensim-SC_OLD-8c39392eaa76fd5fad37368675d1463ad6c69195.tar.gz
opensim-SC_OLD-8c39392eaa76fd5fad37368675d1463ad6c69195.tar.bz2
opensim-SC_OLD-8c39392eaa76fd5fad37368675d1463ad6c69195.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/AgentUpdateArgs.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/AgentUpdateArgs.cs b/OpenSim/Framework/AgentUpdateArgs.cs
index 7b9ec68..660bc32 100644
--- a/OpenSim/Framework/AgentUpdateArgs.cs
+++ b/OpenSim/Framework/AgentUpdateArgs.cs
@@ -78,5 +78,13 @@ namespace OpenSim.Framework
78 /// </summary> 78 /// </summary>
79 public UUID SessionID; 79 public UUID SessionID;
80 public byte State; 80 public byte State;
81
82 public Vector3 ClientAgentPosition;
83 public bool UseClientAgentPosition;
84
85 public AgentUpdateArgs()
86 {
87 UseClientAgentPosition = false;
88 }
81 } 89 }
82} 90}