From 1ee10d919aae59e8b97b7f24dff14a16cb50e8df Mon Sep 17 00:00:00 2001 From: Homer Horwitz Date: Sun, 19 Oct 2008 16:49:10 +0000 Subject: Added calling cards. Fixes Mantis#2409 and part of #1515. --- OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'OpenSim/Region/Examples') 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 public event MapItemRequest OnMapItemRequest; + public event OfferCallingCard OnOfferCallingCard; + public event AcceptCallingCard OnAcceptCallingCard; + public event DeclineCallingCard OnDeclineCallingCard; + #pragma warning restore 67 @@ -938,5 +942,17 @@ namespace OpenSim.Region.Examples.SimpleModule public void SendEventInfoReply (EventData info) { } + + public void SendOfferCallingCard (UUID destID, UUID transactionID) + { + } + + public void SendAcceptCallingCard (UUID transactionID) + { + } + + public void SendDeclineCallingCard (UUID transactionID) + { + } } } -- cgit v1.1