From f1aa849dff3f287686c635510d165941eda8039a Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Sat, 8 Nov 2008 19:37:08 +0000 Subject: * Missed a file from previous checkin. --- OpenSim/Framework/Client/IClientChat.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 OpenSim/Framework/Client/IClientChat.cs (limited to 'OpenSim/Framework/Client') 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 @@ +using System; +using System.Collections.Generic; +using System.Text; +using OpenMetaverse; + +namespace OpenSim.Framework.Client +{ + public interface IClientChat + { + event ChatMessage OnChatFromClient; + + void SendChatMessage(string message, byte type, Vector3 fromPos, string fromName, UUID fromAgentID, byte source, + byte audible); + } +} -- cgit v1.1