From aacf7fab4b579e310259a214203cfc3af2588f4c Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 8 Nov 2010 19:16:18 +0000 Subject: [PATCH] Yay for {@code}! git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1046 ed5b42cb-e716-0410-a449-f6a68f950b19 --- .../tools/xml/SwissArmyTileSetRuleSet.java | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/main/java/com/threerings/media/tile/tools/xml/SwissArmyTileSetRuleSet.java b/src/main/java/com/threerings/media/tile/tools/xml/SwissArmyTileSetRuleSet.java index 49fc9128..25959858 100644 --- a/src/main/java/com/threerings/media/tile/tools/xml/SwissArmyTileSetRuleSet.java +++ b/src/main/java/com/threerings/media/tile/tools/xml/SwissArmyTileSetRuleSet.java @@ -38,21 +38,21 @@ import static com.threerings.media.Log.log; * Parses {@link SwissArmyTileSet} instances from a tileset description. A * swiss army tileset description looks like so: * - *
- * <tileset name="Sample Swiss Army Tileset">
- *   <imagePath>path/to/image.png</imagePath>
- *   <!-- the widths (per row) of each tile in pixels -->
- *   <widths>64, 64, 64, 64</widths>
- *   <!-- the heights (per row) of each tile in pixels -->
- *   <heights>48, 48, 48, 64</heights>
- *   <!-- the number of tiles in each row -->
- *   <tileCounts>16, 5, 3, 10</tileCounts>
- *   <!-- the offset in pixels to the upper left tile -->
- *   <offsetPos>8, 8</offsetPos>
- *   <!-- the gap between tiles in pixels -->
- *   <gapSize>12, 12</gapSize>
- * </tileset>
- * 
+ * {@code + * + * path/to/image.png + * + * 64, 64, 64, 64 + * + * 48, 48, 48, 64 + * + * 16, 5, 3, 10 + * + * 8, 8 + * + * 12, 12 + * + * } */ public class SwissArmyTileSetRuleSet extends TileSetRuleSet {