* Missed a file from previous checkin.

0.6.1-post-fixes
Adam Frisby 2008-11-08 19:37:08 +00:00
parent 4e94989106
commit f1aa849dff
1 changed files with 15 additions and 0 deletions

View File

@ -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);
}
}