From 9dc8c542b89930fd357fa6b4d6b3092f2ad55ffc Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Mon, 29 Nov 2004 23:04:56 +0000 Subject: [PATCH] Added private table property to TableConfig. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3251 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/parlor/data/TableConfig.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/parlor/data/TableConfig.java b/src/java/com/threerings/parlor/data/TableConfig.java index cbeb05550..f02894305 100644 --- a/src/java/com/threerings/parlor/data/TableConfig.java +++ b/src/java/com/threerings/parlor/data/TableConfig.java @@ -1,5 +1,5 @@ // -// $Id: TableConfig.java,v 1.4 2004/08/27 02:20:13 mdb Exp $ +// $Id$ // // Narya library - tools for developing networked games // Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved @@ -50,4 +50,14 @@ public interface TableConfig * Sets the desired number of players to the specified value. */ public void setDesiredPlayers (int desiredPlayers); + + /** + * Checks whether or not this is a configuration for a private table. + */ + public boolean isPrivateTable (); + + /** + * Sets whether nor not this is a configuration for a private table. + */ + public void setPrivateTable (boolean privateTable); }