Initial support for creating, joining and starting party games that are
created by a particular player; may be subsequently joined by other players; and started when any game-specific prerequisites are satisfied by the creating player submitting a GameService.startPartyGame() request. We'll likely be adding a bit more soon to allow watching players to join a party game that hasn't yet started. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1667 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: GameConfig.java,v 1.11 2002/07/25 23:20:22 mdb Exp $
|
||||
// $Id: GameConfig.java,v 1.12 2002/09/06 22:52:27 shaper Exp $
|
||||
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
@@ -36,6 +36,15 @@ public abstract class GameConfig extends PlaceConfig
|
||||
*/
|
||||
public abstract Class getConfiguratorClass ();
|
||||
|
||||
/**
|
||||
* Returns whether this game is a party game. The default
|
||||
* implementation returns false.
|
||||
*/
|
||||
public boolean isPartyGame ()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if this game config object is equal to the supplied
|
||||
* object (meaning it is also a game config object and its
|
||||
|
||||
Reference in New Issue
Block a user