From c2be3edd2d8cb2aabb5040d14167c2bed7c4635c Mon Sep 17 00:00:00 2001
From: Adam Frisby
Date: Sun, 16 Aug 2009 21:49:53 +1000
Subject: * Refactor: Moves IAvatarAttachment into IAvatarAttachment.cs instead
of IAvatar.cs
---
.../Scripting/Minimodule/Interfaces/IAvatar.cs | 13 -------------
.../Scripting/Minimodule/Interfaces/IAvatarAttachment.cs | 15 +++++++++++++++
2 files changed, 15 insertions(+), 13 deletions(-)
create mode 100644 OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs
(limited to 'OpenSim')
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatar.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatar.cs
index 849e3ca..03c1e95 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatar.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatar.cs
@@ -32,19 +32,6 @@ using OpenMetaverse;
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; }
- }
-
public interface IAvatar : IEntity
{
////
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs
new file mode 100644
index 0000000..22b4605
--- /dev/null
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs
@@ -0,0 +1,15 @@
+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; }
+ }
+}
\ No newline at end of file
--
cgit v1.1