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

arthursv
Adam Frisby 2009-08-16 21:49:53 +10:00
rodič b28e826541
revize c2be3edd2d
2 změnil soubory, kde provedl 15 přidání a 13 odebrání

Zobrazit soubor

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

Zobrazit soubor

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