diff options
author | Adam Frisby | 2009-08-16 21:49:53 +1000 |
---|---|---|
committer | Adam Frisby | 2009-08-16 21:49:53 +1000 |
commit | c2be3edd2d8cb2aabb5040d14167c2bed7c4635c (patch) | |
tree | c21122c0c437f1b4ad5c90cbce67771d340c76da /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IAvatarAttachment.cs | |
parent | * Implements ISecurityCredential on all uses of SOPObject.cs except Avatar At... (diff) | |
download | opensim-SC-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.zip opensim-SC-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.tar.gz opensim-SC-c2be3edd2d8cb2aabb5040d14167c2bed7c4635c.tar.bz2 opensim-SC-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.cs | 15 |
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 @@ | |||
1 | namespace 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 | ||