Tell feedback message.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2633 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2003-06-03 23:46:10 +00:00
parent d3f3995cb7
commit 674523b365
@@ -0,0 +1,19 @@
//
// $Id: TellFeedbackMessage.java,v 1.1 2003/06/03 23:46:10 ray Exp $
package com.threerings.crowd.chat.data;
/**
* A feedback message to indicate that a tell succeeded.
*/
public class TellFeedbackMessage extends FeedbackMessage
{
/**
* A tell feedback message is only composed on the client.
*/
public TellFeedbackMessage (String message)
{
super(message, null);
setClientInfo(message, ChatCodes.PLACE_CHAT_TYPE);
}
}