99edb5cd5e
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1659 542714f4-19e9-0310-aa3c-eee0fc999fb1
35 lines
989 B
Java
35 lines
989 B
Java
//
|
|
// $Id: LocationSender.java,v 1.2 2002/08/20 19:38:14 mdb Exp $
|
|
|
|
package com.threerings.crowd.server;
|
|
|
|
import com.threerings.crowd.client.LocationDecoder;
|
|
import com.threerings.crowd.client.LocationReceiver;
|
|
import com.threerings.presents.data.ClientObject;
|
|
import com.threerings.presents.server.InvocationSender;
|
|
|
|
/**
|
|
* Used to issue notifications to a {@link LocationReceiver} instance on a
|
|
* client.
|
|
*
|
|
* <p> Generated from <code>
|
|
* $Id: LocationSender.java,v 1.2 2002/08/20 19:38:14 mdb Exp $
|
|
* </code>
|
|
*/
|
|
public class LocationSender extends InvocationSender
|
|
{
|
|
/**
|
|
* Issues a notification that will result in a call to {@link
|
|
* LocationReceiver#forcedMove} on a client.
|
|
*/
|
|
public static void forcedMove (
|
|
ClientObject target, int arg1)
|
|
{
|
|
sendNotification(
|
|
target, LocationDecoder.RECEIVER_CODE, LocationDecoder.FORCED_MOVE,
|
|
new Object[] { new Integer(arg1) });
|
|
}
|
|
|
|
// Generated on 12:36:59 08/20/02.
|
|
}
|