Initial work on a body service to allow setting a user's idled state.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1877 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2002-11-01 00:39:18 +00:00
parent b07fef8396
commit f25c028cca
6 changed files with 208 additions and 38 deletions
@@ -0,0 +1,19 @@
//
// $Id: BodyService.java,v 1.1 2002/11/01 00:39:18 shaper Exp $
package com.threerings.crowd.client;
import com.threerings.presents.client.Client;
import com.threerings.presents.client.InvocationService;
/**
* The client side of the body-related invocation services.
*/
public interface BodyService extends InvocationService
{
/**
* Requests to set the idle state of the client to the specified
* value.
*/
public void setIdle (Client client, boolean idle);
}