aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorHomer Horwitz2008-10-19 16:49:10 +0000
committerHomer Horwitz2008-10-19 16:49:10 +0000
commit1ee10d919aae59e8b97b7f24dff14a16cb50e8df (patch)
treeed53a4418624c0f1c7aff4b2474184e989ae3f8d /OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
parentUpdate svn properties. (diff)
downloadopensim-SC_OLD-1ee10d919aae59e8b97b7f24dff14a16cb50e8df.zip
opensim-SC_OLD-1ee10d919aae59e8b97b7f24dff14a16cb50e8df.tar.gz
opensim-SC_OLD-1ee10d919aae59e8b97b7f24dff14a16cb50e8df.tar.bz2
opensim-SC_OLD-1ee10d919aae59e8b97b7f24dff14a16cb50e8df.tar.xz
Added calling cards. Fixes Mantis#2409 and part of #1515.
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index af60323..5e7523f 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -229,6 +229,10 @@ namespace OpenSim.Region.Examples.SimpleModule
229 229
230 public event MapItemRequest OnMapItemRequest; 230 public event MapItemRequest OnMapItemRequest;
231 231
232 public event OfferCallingCard OnOfferCallingCard;
233 public event AcceptCallingCard OnAcceptCallingCard;
234 public event DeclineCallingCard OnDeclineCallingCard;
235
232 236
233#pragma warning restore 67 237#pragma warning restore 67
234 238
@@ -938,5 +942,17 @@ namespace OpenSim.Region.Examples.SimpleModule
938 public void SendEventInfoReply (EventData info) 942 public void SendEventInfoReply (EventData info)
939 { 943 {
940 } 944 }
945
946 public void SendOfferCallingCard (UUID destID, UUID transactionID)
947 {
948 }
949
950 public void SendAcceptCallingCard (UUID transactionID)
951 {
952 }
953
954 public void SendDeclineCallingCard (UUID transactionID)
955 {
956 }
941 } 957 }
942} 958}