aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/IDialogModule.cs')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IDialogModule.cs16
1 files changed, 16 insertions, 0 deletions
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 @@
27 27
28using System; 28using System;
29using OpenMetaverse; 29using OpenMetaverse;
30using OpenSim.Framework;
30 31
31namespace OpenSim.Region.Environment.Interfaces 32namespace OpenSim.Region.Environment.Interfaces
32{ 33{
@@ -35,6 +36,21 @@ namespace OpenSim.Region.Environment.Interfaces
35 /// <summary> 36 /// <summary>
36 /// Send a non-modal alert message to a particular user. 37 /// Send a non-modal alert message to a particular user.
37 /// </summary> 38 /// </summary>
39 /// <param name="client"></param>
40 /// <param name="message"></param>
41 void SendAlertToUser(IClientAPI client, string message);
42
43 /// <summary>
44 /// Send an alert message to a particular user.
45 /// </summary>
46 /// <param name="client"></param>
47 /// <param name="message"></param>
48 /// <param name="modal"></param>
49 void SendAlertToUser(IClientAPI client, string message, bool modal);
50
51 /// <summary>
52 /// Send a non-modal alert message to a particular user.
53 /// </summary>
38 /// <param name="agentID"></param> 54 /// <param name="agentID"></param>
39 /// <param name="message"></param> 55 /// <param name="message"></param>
40 void SendAlertToUser(UUID agentID, string message); 56 void SendAlertToUser(UUID agentID, string message);