diff options
author | Melanie | 2010-02-05 13:11:33 +0000 |
---|---|---|
committer | Melanie | 2010-02-05 13:11:33 +0000 |
commit | 1b44711ceb6f84c6eaa503d5d08ce30cb49a01e8 (patch) | |
tree | 3bfdf0d3247f803b798951a1e02d16966db4db5a /OpenSim/Services | |
parent | Implement the friends data adaptor (diff) | |
download | opensim-SC_OLD-1b44711ceb6f84c6eaa503d5d08ce30cb49a01e8.zip opensim-SC_OLD-1b44711ceb6f84c6eaa503d5d08ce30cb49a01e8.tar.gz opensim-SC_OLD-1b44711ceb6f84c6eaa503d5d08ce30cb49a01e8.tar.bz2 opensim-SC_OLD-1b44711ceb6f84c6eaa503d5d08ce30cb49a01e8.tar.xz |
Clarify some names
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IFriendsService.cs | 5 |
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 | } |