From 3a19c858032490708e8c147947f56126cde536b0 Mon Sep 17 00:00:00 2001 From: Melanie Date: Sat, 2 Jan 2010 19:32:46 +0000 Subject: Change to a class --- OpenSim/Services/Interfaces/IAvatarService.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'OpenSim/Services') diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs index bebd455..ccf77c0 100644 --- a/OpenSim/Services/Interfaces/IAvatarService.cs +++ b/OpenSim/Services/Interfaces/IAvatarService.cs @@ -73,7 +73,7 @@ namespace OpenSim.Services.Interfaces /// Each region/client that uses avatars will have a data structure /// of this type representing the avatars. /// - public interface IAvatarData + public class AvatarData { // This pretty much determines which name/value pairs will be // present below. The name/value pair describe a part of @@ -88,13 +88,15 @@ namespace OpenSim.Services.Interfaces // portable, but allows legacy appearance to continue to // function. Closed, LL-based grids will never need URLs here. - int AvatarType { get; set; } - Dictionary Data { get; set; } + public int AvatarType; + public Dictionary Data; /// - /// This MUST at least define a pair "AvatarType" -> "dll:class" /// /// - Dictionary ToKeyValuePairs(); + public Dictionary ToKeyValuePairs() + { + return null; + } } } -- cgit v1.1