aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IAvatarFactory.cs
blob: e7ce957c3f4a2548905114e1bcd6417757aa4b10 (plain)
1
2
3
4
5
6
7
8
9
10
using libsecondlife;
using OpenSim.Framework;

namespace OpenSim.Region.Environment.Interfaces
{
    public interface IAvatarFactory : IRegionModule
    {
        bool TryGetIntialAvatarAppearance(LLUUID avatarId, out AvatarWearable[] wearables, out byte[] visualParams);
    }
}