diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IAgentAssetTransactions.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IAgentAssetTransactions.cs b/OpenSim/Region/Environment/Interfaces/IAgentAssetTransactions.cs index c099fa1..90d1c12 100644 --- a/OpenSim/Region/Environment/Interfaces/IAgentAssetTransactions.cs +++ b/OpenSim/Region/Environment/Interfaces/IAgentAssetTransactions.cs | |||
@@ -25,20 +25,20 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using libsecondlife; | 28 | using OpenMetaverse; |
29 | using OpenSim.Framework; | 29 | using OpenSim.Framework; |
30 | 30 | ||
31 | namespace OpenSim.Region.Environment.Interfaces | 31 | namespace OpenSim.Region.Environment.Interfaces |
32 | { | 32 | { |
33 | public interface IAgentAssetTransactions | 33 | public interface IAgentAssetTransactions |
34 | { | 34 | { |
35 | void HandleItemUpdateFromTransaction(IClientAPI remoteClient, LLUUID transactionID, | 35 | void HandleItemUpdateFromTransaction(IClientAPI remoteClient, UUID transactionID, |
36 | InventoryItemBase item); | 36 | InventoryItemBase item); |
37 | 37 | ||
38 | void HandleItemCreationFromTransaction(IClientAPI remoteClient, LLUUID transactionID, LLUUID folderID, | 38 | void HandleItemCreationFromTransaction(IClientAPI remoteClient, UUID transactionID, UUID folderID, |
39 | uint callbackID, string description, string name, sbyte invType, | 39 | uint callbackID, string description, string name, sbyte invType, |
40 | sbyte type, byte wearableType, uint nextOwnerMask); | 40 | sbyte type, byte wearableType, uint nextOwnerMask); |
41 | 41 | ||
42 | void RemoveAgentAssetTransactions(LLUUID userID); | 42 | void RemoveAgentAssetTransactions(UUID userID); |
43 | } | 43 | } |
44 | } | 44 | } |