aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-12-25 20:28:13 +0000
committerMelanie Thielker2008-12-25 20:28:13 +0000
commit23844a9073e28fb8c74424812603027586bdb4df (patch)
tree3267ff93ec895d352990ea6f783f1b4a62645670 /OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
parentPlumb yet another groups packet (diff)
downloadopensim-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/SimpleModule/MyNpcCharacter.cs')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs17
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}