aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-12 20:40:49 -0700
committerDiva Canto2009-08-12 20:40:49 -0700
commitb0292d59a54fab6f7e825d6f0e5f0517d56243a6 (patch)
tree3c49fe36db9167babb7c8c44758a9755cd02b271 /OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs
parentRedirected all calls to CachedUserProfile methods to the inventory service. R... (diff)
parentminor:comments (diff)
downloadopensim-SC_OLD-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.zip
opensim-SC_OLD-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.gz
opensim-SC_OLD-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.bz2
opensim-SC_OLD-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.xz
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs')
-rw-r--r--OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs b/OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs
index 8fd21d7..54835da 100644
--- a/OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs
+++ b/OpenSim/Framework/AvatarPickerReplyAgentDataArgs.cs
@@ -30,9 +30,19 @@ using OpenMetaverse;
30 30
31namespace OpenSim.Framework 31namespace OpenSim.Framework
32{ 32{
33 /// <summary>
34 /// Args to return to a client that queries picker data
35 /// </summary>
33 public class AvatarPickerReplyAgentDataArgs : EventArgs 36 public class AvatarPickerReplyAgentDataArgs : EventArgs
34 { 37 {
38 /// <summary>
39 /// Unique Agent ID
40 /// </summary>
35 public UUID AgentID; 41 public UUID AgentID;
42
43 /// <summary>
44 /// ID of query user submitted
45 /// </summary>
36 public UUID QueryID; 46 public UUID QueryID;
37 } 47 }
38} 48}