ef52f31ad4
to the newly simplified ChatDisplay interface, which now has but one method. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1620 542714f4-19e9-0310-aa3c-eee0fc999fb1
20 lines
435 B
Java
20 lines
435 B
Java
//
|
|
// $Id: SystemMessage.java,v 1.1 2002/07/26 20:35:01 ray Exp $
|
|
|
|
package com.threerings.crowd.chat;
|
|
|
|
/**
|
|
* A ChatMessage that represents a message that came from the server
|
|
* and did not result from direct user action.
|
|
*/
|
|
public class SystemMessage extends ChatMessage
|
|
{
|
|
/**
|
|
* Construct a SystemMessage.
|
|
*/
|
|
public SystemMessage (String message, String localtype)
|
|
{
|
|
super(message, localtype);
|
|
}
|
|
}
|