From b97a51d7d0dc0946e5bf5e42c69a40a68af4d01b Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 7 Jan 2009 20:46:28 +0000 Subject: * refactor: Make some direct IClientAPI calls go through the dialog module instead --- OpenSim/Region/Environment/Interfaces/IDialogModule.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'OpenSim/Region/Environment/Interfaces/IDialogModule.cs') diff --git a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs index 1e5c791..a296c5a 100644 --- a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs +++ b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs @@ -27,6 +27,7 @@ using System; using OpenMetaverse; +using OpenSim.Framework; namespace OpenSim.Region.Environment.Interfaces { @@ -35,6 +36,21 @@ namespace OpenSim.Region.Environment.Interfaces /// /// Send a non-modal alert message to a particular user. /// + /// + /// + void SendAlertToUser(IClientAPI client, string message); + + /// + /// Send an alert message to a particular user. + /// + /// + /// + /// + void SendAlertToUser(IClientAPI client, string message, bool modal); + + /// + /// Send a non-modal alert message to a particular user. + /// /// /// void SendAlertToUser(UUID agentID, string message); -- cgit v1.1