mirror of
https://github.com/opensim/opensim.git
synced 2026-06-03 17:16:31 +08:00
15 lines
409 B
C#
15 lines
409 B
C#
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
|
{
|
|
public interface IAvatarAttachment
|
|
{
|
|
//// <value>
|
|
/// Describes where on the avatar the attachment is located
|
|
/// </value>
|
|
int Location { get ; }
|
|
|
|
//// <value>
|
|
/// Accessor to the rez'ed asset, representing the attachment
|
|
/// </value>
|
|
IObject Asset { get; }
|
|
}
|
|
} |