IUserServer.cs 446 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using OpenSim.Framework.Inventory;
  5. using libsecondlife;
  6. namespace OpenSim.Framework.Interfaces
  7. {
  8. public interface IUserServer
  9. {
  10. AgentInventory RequestAgentsInventory(LLUUID agentID);
  11. void SetServerInfo(string ServerUrl, string SendKey, string RecvKey);
  12. bool UpdateAgentsInventory(LLUUID agentID, AgentInventory inventory);
  13. }
  14. }