* Refactor: Moves IAvatarAttachment into IAvatarAttachment.cs instead of IAvatar.cs
parent
b28e826541
commit
c2be3edd2d
|
@ -32,19 +32,6 @@ using OpenMetaverse;
|
|||
|
||||
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; }
|
||||
}
|
||||
|
||||
public interface IAvatar : IEntity
|
||||
{
|
||||
//// <value>
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue