From 2787207aa287a60a3c7c06fad66d406180033ae2 Mon Sep 17 00:00:00 2001
From: BlueWall
Date: Fri, 19 Aug 2011 18:47:21 -0400
Subject: Add llRegionSayTo
llRegionSayTo(key target, integer channel, string messasge)
Allows messages to be sent region-wide
to a particular prim.
---
OpenSim/Region/Framework/Interfaces/IWorldComm.cs | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
(limited to 'OpenSim/Region/Framework')
diff --git a/OpenSim/Region/Framework/Interfaces/IWorldComm.cs b/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
index 8da99a0..8f200ae 100644
--- a/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
+++ b/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
@@ -81,6 +81,26 @@ namespace OpenSim.Region.Framework.Interfaces
void DeliverMessage(ChatTypeEnum type, int channel, string name, UUID id, string msg);
///
+ /// Delivers the message to a specified object in the region.
+ ///
+ ///
+ /// Target.
+ ///
+ ///
+ /// Channel.
+ ///
+ ///
+ /// Name.
+ ///
+ ///
+ /// Identifier.
+ ///
+ ///
+ /// Message.
+ ///
+ void DeliverMessageTo(UUID target, int channel, string name, UUID id, string msg);
+
+ ///
/// Are there any listen events ready to be dispatched?
///
/// boolean indication
--
cgit v1.1