diff options
author | Diva Canto | 2010-01-02 12:18:22 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-02 12:18:22 -0800 |
commit | e73eb55ad8c136efd34e2f5239856053d3cbef81 (patch) | |
tree | decd120656dec2496b4bdc40f5fc37f686ce1c93 /OpenSim/Services | |
parent | Change to a class (diff) | |
download | opensim-SC_OLD-e73eb55ad8c136efd34e2f5239856053d3cbef81.zip opensim-SC_OLD-e73eb55ad8c136efd34e2f5239856053d3cbef81.tar.gz opensim-SC_OLD-e73eb55ad8c136efd34e2f5239856053d3cbef81.tar.bz2 opensim-SC_OLD-e73eb55ad8c136efd34e2f5239856053d3cbef81.tar.xz |
Changed the rest of references to IAvatarData to AvatarData
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IAvatarService.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs index ccf77c0..682616a 100644 --- a/OpenSim/Services/Interfaces/IAvatarService.cs +++ b/OpenSim/Services/Interfaces/IAvatarService.cs | |||
@@ -41,7 +41,7 @@ namespace OpenSim.Services.Interfaces | |||
41 | /// </summary> | 41 | /// </summary> |
42 | /// <param name="userID"></param> | 42 | /// <param name="userID"></param> |
43 | /// <returns></returns> | 43 | /// <returns></returns> |
44 | IAvatarData GetAvatar(UUID userID); | 44 | AvatarData GetAvatar(UUID userID); |
45 | 45 | ||
46 | /// <summary> | 46 | /// <summary> |
47 | /// Called by everyone who can change the avatar data (so, regions) | 47 | /// Called by everyone who can change the avatar data (so, regions) |
@@ -49,7 +49,7 @@ namespace OpenSim.Services.Interfaces | |||
49 | /// <param name="userID"></param> | 49 | /// <param name="userID"></param> |
50 | /// <param name="avatar"></param> | 50 | /// <param name="avatar"></param> |
51 | /// <returns></returns> | 51 | /// <returns></returns> |
52 | bool SetAvatar(UUID userID, IAvatarData avatar); | 52 | bool SetAvatar(UUID userID, AvatarData avatar); |
53 | 53 | ||
54 | /// <summary> | 54 | /// <summary> |
55 | /// Not sure if it's needed | 55 | /// Not sure if it's needed |
@@ -91,6 +91,11 @@ namespace OpenSim.Services.Interfaces | |||
91 | public int AvatarType; | 91 | public int AvatarType; |
92 | public Dictionary<string,string> Data; | 92 | public Dictionary<string,string> Data; |
93 | 93 | ||
94 | public AvatarData(Dictionary<string, object> kvp) | ||
95 | { | ||
96 | // TODO | ||
97 | } | ||
98 | |||
94 | /// <summary> | 99 | /// <summary> |
95 | /// </summary> | 100 | /// </summary> |
96 | /// <returns></returns> | 101 | /// <returns></returns> |