Beginnings of Whirled service which is a system for building worlds made
of interconnected scenes on top of the Cocktail services. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@228 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// $Id: Scene.java,v 1.1 2001/08/11 04:09:50 mdb Exp $
|
||||
|
||||
package com.threerings.whirled.data;
|
||||
|
||||
/**
|
||||
* The base scene interface. This encapsulates the minimum information
|
||||
* needed about a scene in the Whirled system.
|
||||
*/
|
||||
public interface Scene
|
||||
{
|
||||
public int getId ();
|
||||
|
||||
public int getVersion ();
|
||||
|
||||
public int[] getExitIds ();
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
//
|
||||
// $Id: SceneObject.java,v 1.1 2001/08/11 04:09:50 mdb Exp $
|
||||
|
||||
package com.threerings.whirled.data;
|
||||
|
||||
import com.threerings.cocktail.party.data.PlaceObject;
|
||||
|
||||
public class SceneObject extends PlaceObject
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user