diff options
author | Diva Canto | 2010-01-02 11:43:29 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-02 11:43:29 -0800 |
commit | 7c06634e520c69b169df414857ffcb1847d93382 (patch) | |
tree | e1d307259142670fb60e69295945051d84f158a5 /OpenSim/Services | |
parent | First stab at avatar data. Very generic (diff) | |
download | opensim-SC_OLD-7c06634e520c69b169df414857ffcb1847d93382.zip opensim-SC_OLD-7c06634e520c69b169df414857ffcb1847d93382.tar.gz opensim-SC_OLD-7c06634e520c69b169df414857ffcb1847d93382.tar.bz2 opensim-SC_OLD-7c06634e520c69b169df414857ffcb1847d93382.tar.xz |
Clarifying comments.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IAvatarService.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs index dc56f4f..d2b7ba4 100644 --- a/OpenSim/Services/Interfaces/IAvatarService.cs +++ b/OpenSim/Services/Interfaces/IAvatarService.cs | |||
@@ -59,7 +59,7 @@ namespace OpenSim.Services.Interfaces | |||
59 | bool ResetAvatar(UUID userID); | 59 | bool ResetAvatar(UUID userID); |
60 | 60 | ||
61 | /// <summary> | 61 | /// <summary> |
62 | /// These 3 methods raison d'etre: | 62 | /// These methods raison d'etre: |
63 | /// No need to send the entire avatar data (SetAvatar) for changing attachments | 63 | /// No need to send the entire avatar data (SetAvatar) for changing attachments |
64 | /// </summary> | 64 | /// </summary> |
65 | /// <param name="userID"></param> | 65 | /// <param name="userID"></param> |
@@ -96,5 +96,11 @@ namespace OpenSim.Services.Interfaces | |||
96 | 96 | ||
97 | int AvatarType { get; set; } | 97 | int AvatarType { get; set; } |
98 | Dictionary<string,string> Data { get; set; } | 98 | Dictionary<string,string> Data { get; set; } |
99 | |||
100 | /// <summary> | ||
101 | /// This MUST at least define a pair "AvatarType" -> "dll:class" | ||
102 | /// </summary> | ||
103 | /// <returns></returns> | ||
104 | Dictionary<string, object> ToKeyValuePairs(); | ||
99 | } | 105 | } |
100 | } | 106 | } |