From 573b9821cdcf4b81ad728b9942752f484f2f0e5f Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 29 Nov 2001 00:16:31 +0000 Subject: [PATCH] Added a name for use in the editor and in XML files. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@664 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/whirled/spot/data/Portal.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/whirled/spot/data/Portal.java b/src/java/com/threerings/whirled/spot/data/Portal.java index c987123be..ba30812c3 100644 --- a/src/java/com/threerings/whirled/spot/data/Portal.java +++ b/src/java/com/threerings/whirled/spot/data/Portal.java @@ -1,5 +1,5 @@ // -// $Id: Portal.java,v 1.1 2001/11/13 02:25:35 mdb Exp $ +// $Id: Portal.java,v 1.2 2001/11/29 00:16:31 mdb Exp $ package com.threerings.whirled.spot.data; @@ -27,6 +27,11 @@ public class Portal extends Location * the target scene when they "use" this portal. */ public int targetLocationId; + /** During the offline scene creation process, a portal will have a + * huamn readable name. This is not serialized or transmitted over the + * wire. */ + public String name; + /** * Constructs a portal with the supplied values. */