namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public interface IAvatarAttachment
{
////
/// Describes where on the avatar the attachment is located
///
int Location { get ; }
////
/// Accessor to the rez'ed asset, representing the attachment
///
IObject Asset { get; }
}
}