Keep the sceneId of the currently occupied scene in the body object.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1718 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-09-20 00:54:06 +00:00
parent ba4985053f
commit d8af715498
4 changed files with 42 additions and 7 deletions
@@ -0,0 +1,21 @@
//
// $Id: ScenedBodyObject.java,v 1.1 2002/09/20 00:54:06 mdb Exp $
package com.threerings.whirled.data;
/**
* A system that uses the whirled services must provide a body object
* extension that implements this interface.
*/
public interface ScenedBodyObject
{
/**
* Returns the scene id currently occupied by this body.
*/
public int getSceneId ();
/**
* Sets the scene id currently occupied by this body.
*/
public void setSceneId (int sceneId);
}