mirror of
https://github.com/opensim/opensim.git
synced 2026-05-28 04:45:37 +08:00
10 lines
279 B
C#
10 lines
279 B
C#
using libsecondlife;
|
|
using OpenSim.Framework;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IAvatarFactory : IRegionModule
|
|
{
|
|
bool TryGetIntialAvatarAppearance(LLUUID avatarId, out AvatarWearable[] wearables, out byte[] visualParams);
|
|
}
|
|
} |