aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IFriendsService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/Interfaces/IFriendsService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IFriendsService.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Services/Interfaces/IFriendsService.cs b/OpenSim/Services/Interfaces/IFriendsService.cs
index ed77c1a..4e665cd 100644
--- a/OpenSim/Services/Interfaces/IFriendsService.cs
+++ b/OpenSim/Services/Interfaces/IFriendsService.cs
@@ -35,15 +35,14 @@ namespace OpenSim.Region.Framework.Interfaces
35 { 35 {
36 public UUID PrincipalID; 36 public UUID PrincipalID;
37 public string Friend; 37 public string Friend;
38 int MyRights; 38 int MyFlags;
39 int TheirRights; 39 int TheirFlags;
40 } 40 }
41 41
42 public interface IFriendsService 42 public interface IFriendsService
43 { 43 {
44 FriendInfo[] GetFriends(UUID PrincipalID); 44 FriendInfo[] GetFriends(UUID PrincipalID);
45 bool StoreFriend(UUID PrincipalID, string Friend, int flags); 45 bool StoreFriend(UUID PrincipalID, string Friend, int flags);
46 bool SetFlags(UUID PrincipalID, int flags);
47 bool Delete(UUID PrincipalID, string Friend); 46 bool Delete(UUID PrincipalID, string Friend);
48 } 47 }
49} 48}