diff options
author | Diva Canto | 2009-08-12 20:40:49 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-12 20:40:49 -0700 |
commit | b0292d59a54fab6f7e825d6f0e5f0517d56243a6 (patch) | |
tree | 3c49fe36db9167babb7c8c44758a9755cd02b271 /OpenSim/Framework/AvatarPickerAvatar.cs | |
parent | Redirected all calls to CachedUserProfile methods to the inventory service. R... (diff) | |
parent | minor:comments (diff) | |
download | opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.zip opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.gz opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.bz2 opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Framework/AvatarPickerAvatar.cs')
-rw-r--r-- | OpenSim/Framework/AvatarPickerAvatar.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Framework/AvatarPickerAvatar.cs b/OpenSim/Framework/AvatarPickerAvatar.cs index 0e8602d..200c054 100644 --- a/OpenSim/Framework/AvatarPickerAvatar.cs +++ b/OpenSim/Framework/AvatarPickerAvatar.cs | |||
@@ -29,10 +29,24 @@ using OpenMetaverse; | |||
29 | 29 | ||
30 | namespace OpenSim.Framework | 30 | namespace OpenSim.Framework |
31 | { | 31 | { |
32 | /// <summary> | ||
33 | /// Avatar returned by the Avatar Picker request | ||
34 | /// </summary> | ||
32 | public class AvatarPickerAvatar | 35 | public class AvatarPickerAvatar |
33 | { | 36 | { |
37 | /// <summary> | ||
38 | /// Avatar's Unique ID | ||
39 | /// </summary> | ||
34 | public UUID AvatarID; | 40 | public UUID AvatarID; |
41 | |||
42 | /// <summary> | ||
43 | /// Avatar's Account first name | ||
44 | /// </summary> | ||
35 | public string firstName; | 45 | public string firstName; |
46 | |||
47 | /// <summary> | ||
48 | /// Avatar's Account last name | ||
49 | /// </summary> | ||
36 | public string lastName; | 50 | public string lastName; |
37 | } | 51 | } |
38 | } | 52 | } |