aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IAvatarService.cs
blob: a3494cf8f00db4c0a24df9d21bfcf60f39b03d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;

namespace OpenSim.Framework.Communications
{
    public interface IAvatarService
    {
        /// Get's the User Appearance
        AvatarAppearance GetUserAppearance(LLUUID user);

        void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance);

        void AddAttachment(LLUUID user, LLUUID attach);

        void RemoveAttachment(LLUUID user, LLUUID attach);

        List<LLUUID> GetAttachments(LLUUID user);
    }
}