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.cs15
1 files changed, 14 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
index 4a648d6..b55ba26 100644
--- a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
+++ b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
@@ -90,6 +90,19 @@ namespace OpenSim.Region.Environment.Interfaces
90 /// <param name="fromAvatarID">The user sending the message</param> 90 /// <param name="fromAvatarID">The user sending the message</param>
91 /// <param name="fromAvatarName">The name of the user doing the sending</param> 91 /// <param name="fromAvatarName">The name of the user doing the sending</param>
92 /// <param name="message">The message being sent to the user</param> 92 /// <param name="message">The message being sent to the user</param>
93 void SendNotificationToUsersInRegion(UUID fromAvatarID, string fromAvatarName, string message); 93 void SendNotificationToUsersInRegion(UUID fromAvatarID, string fromAvatarName, string message);
94
95 /// <summary>
96 /// Send a notification to all users in the estate. This notification should remain around until the
97 /// user explicitly dismisses it.
98 /// </summary>
99 ///
100 /// On the Linden Labs Second Client (as of 1.21), this is a big blue box message on the upper right of the
101 /// screen.
102 ///
103 /// <param name="fromAvatarID">The user sending the message</param>
104 /// <param name="fromAvatarName">The name of the user doing the sending</param>
105 /// <param name="message">The message being sent to the user</param>
106 void SendNotificationToUsersInEstate(UUID fromAvatarID, string fromAvatarName, string message);
94 } 107 }
95} 108}