add an agent position field to AgentUpdateArgs for use by some non-LL clients

mysql-performance
dahlia 2010-01-14 02:16:40 -08:00
parent 5dcb14726d
commit 88d2adc93c
1 changed files with 8 additions and 0 deletions

View File

@ -78,5 +78,13 @@ namespace OpenSim.Framework
/// </summary>
public UUID SessionID;
public byte State;
public Vector3 ClientAgentPosition;
public bool UseClientAgentPosition;
public AgentUpdateArgs()
{
UseClientAgentPosition = false;
}
}
}