diff options
author | Jeff Ames | 2009-07-01 10:26:43 +0000 |
---|---|---|
committer | Jeff Ames | 2009-07-01 10:26:43 +0000 |
commit | 3f2fba610ea48b6d93a77f3965882d600b6a908a (patch) | |
tree | 6c69fcfd02023f5450e11a6f244a611298d8091f /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces | |
parent | add some more intuitive overloads for PrimitiveBaseShape SetPathRange and Set... (diff) | |
download | opensim-SC-3f2fba610ea48b6d93a77f3965882d600b6a908a.zip opensim-SC-3f2fba610ea48b6d93a77f3965882d600b6a908a.tar.gz opensim-SC-3f2fba610ea48b6d93a77f3965882d600b6a908a.tar.bz2 opensim-SC-3f2fba610ea48b6d93a77f3965882d600b6a908a.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IInventoryItem.cs | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IInventoryItem.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IInventoryItem.cs index 7490dda..79ee4d6 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IInventoryItem.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IInventoryItem.cs | |||
@@ -1,16 +1,16 @@ | |||
1 | using System; | 1 | using System; |
2 | using OpenMetaverse; | 2 | using OpenMetaverse; |
3 | 3 | ||
4 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | 4 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule |
5 | { | 5 | { |
6 | 6 | ||
7 | /// <summary> | 7 | /// <summary> |
8 | /// This implements the methods needed to operate on individual inventory items. | 8 | /// This implements the methods needed to operate on individual inventory items. |
9 | /// </summary> | 9 | /// </summary> |
10 | public interface IInventoryItem | 10 | public interface IInventoryItem |
11 | { | 11 | { |
12 | int Type { get; } | 12 | int Type { get; } |
13 | UUID AssetID { get; } | 13 | UUID AssetID { get; } |
14 | T RetreiveAsset<T>() where T : OpenMetaverse.Asset, new(); | 14 | T RetreiveAsset<T>() where T : OpenMetaverse.Asset, new(); |
15 | } | 15 | } |
16 | } | 16 | } |