Added support for think and emote.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1599 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-07-22 22:26:26 +00:00
parent af8b7bf237
commit 5c5038690b
9 changed files with 82 additions and 25 deletions
@@ -1,5 +1,5 @@
//
// $Id: ChatCodes.java,v 1.7 2002/04/15 16:28:01 shaper Exp $
// $Id: ChatCodes.java,v 1.8 2002/07/22 22:26:26 ray Exp $
package com.threerings.crowd.chat;
@@ -45,6 +45,17 @@ public interface ChatCodes extends InvocationCodes
/** The message identifier for a tell notification. */
public static final String TELL_NOTIFICATION = "Tell";
/** The default mode used by speak requests. */
public static final String DEFAULT_MODE = "default";
/** The think mode to indicate that the user is thinking
* what they're saying, or is it that they're saying what they're
* thinking? */
public static final String THINK_MODE = "think";
/** The mode to indicate that a speak is actually an emote. */
public static final String EMOTE_MODE = "emote";
/** An error code delivered when the user targeted for a tell
* notification is not online. */
public static final String USER_NOT_ONLINE = "m.user_not_online";