aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs
diff options
context:
space:
mode:
authorAdam Frisby2009-08-16 21:49:53 +1000
committerAdam Frisby2009-08-16 21:49:53 +1000
commitc2be3edd2d8cb2aabb5040d14167c2bed7c4635c (patch)
treec21122c0c437f1b4ad5c90cbce67771d340c76da /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs
parent* Implements ISecurityCredential on all uses of SOPObject.cs except Avatar At... (diff)
downloadopensim-SC_OLD-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.zip
opensim-SC_OLD-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.tar.gz
opensim-SC_OLD-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.tar.bz2
opensim-SC_OLD-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.tar.xz
* Refactor: Moves IAvatarAttachment into IAvatarAttachment.cs instead of IAvatar.cs
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs15
1 files changed, 15 insertions, 0 deletions
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 @@
1namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
2{
3 public interface IAvatarAttachment
4 {
5 //// <value>
6 /// Describes where on the avatar the attachment is located
7 /// </value>
8 int Location { get ; }
9
10 //// <value>
11 /// Accessor to the rez'ed asset, representing the attachment
12 /// </value>
13 IObject Asset { get; }
14 }
15} \ No newline at end of file