aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Client/IClientChat.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Framework/Client/IClientChat.cs b/OpenSim/Framework/Client/IClientChat.cs
new file mode 100644
index 0000000..76084ee
--- /dev/null
+++ b/OpenSim/Framework/Client/IClientChat.cs
@@ -0,0 +1,15 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenMetaverse;
5
6namespace OpenSim.Framework.Client
7{
8 public interface IClientChat
9 {
10 event ChatMessage OnChatFromClient;
11
12 void SendChatMessage(string message, byte type, Vector3 fromPos, string fromName, UUID fromAgentID, byte source,
13 byte audible);
14 }
15}