6b1d65553f
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5241 542714f4-19e9-0310-aa3c-eee0fc999fb1
19 lines
338 B
Java
19 lines
338 B
Java
//
|
|
// $Id$
|
|
|
|
package com.threerings.crowd.client;
|
|
|
|
import com.threerings.crowd.util.CrowdContext;
|
|
|
|
/**
|
|
* Handles the basic bits for our simple chat room.
|
|
*/
|
|
public class JabberController extends PlaceController
|
|
{
|
|
@Override
|
|
protected PlaceView createPlaceView (CrowdContext ctx)
|
|
{
|
|
return new JabberPanel(ctx);
|
|
}
|
|
}
|