* Refactor: Moves IAvatarAttachment into IAvatarAttachment.cs instead of IAvatar.cs

arthursv
Adam Frisby 2009-08-16 21:49:53 +10:00
parent b28e826541
commit c2be3edd2d
2 changed files with 15 additions and 13 deletions

View File

@ -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>

View File

@ -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; }
}
}