diff options
author | Melanie Thielker | 2008-12-25 20:28:13 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-12-25 20:28:13 +0000 |
commit | 23844a9073e28fb8c74424812603027586bdb4df (patch) | |
tree | 3267ff93ec895d352990ea6f783f1b4a62645670 /OpenSim/Region/Examples | |
parent | Plumb yet another groups packet (diff) | |
download | opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.zip opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.tar.gz opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.tar.bz2 opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.tar.xz |
Plumb the profile reply packets for picks, classifieds and notes
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index fd5fa7a..79e6653 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -1024,6 +1024,23 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
1024 | { | 1024 | { |
1025 | } | 1025 | } |
1026 | 1026 | ||
1027 | public void SendAgentDropGroup(UUID groupID) | ||
1028 | { | ||
1029 | } | ||
1030 | |||
1031 | public void SendAvatarNotesReply(UUID targetID, string text) | ||
1032 | { | ||
1033 | } | ||
1034 | |||
1035 | public void SendAvatarPicksReply(UUID targetID, Dictionary<UUID, string> picks) | ||
1036 | { | ||
1037 | } | ||
1038 | |||
1039 | public void SendAvatarClassifiedReply(UUID targetID, Dictionary<UUID, string> classifieds) | ||
1040 | { | ||
1041 | } | ||
1042 | |||
1043 | |||
1027 | #endregion | 1044 | #endregion |
1028 | } | 1045 | } |
1029 | } | 1046 | } |