diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-03 15:29:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-03 15:33:08 +0300 |
commit | be98eb3cb215a2715e8c2d42eb476329b0c194eb (patch) | |
tree | da061035aac7f22df8fedb334a5e62dfc7ce6882 /hercules/templates/example.tmx | |
parent | d53fc948fa92df30bcef465e07f9fca43b8fbfd7 (diff) | |
download | tools-be98eb3cb215a2715e8c2d42eb476329b0c194eb.tar.gz tools-be98eb3cb215a2715e8c2d42eb476329b0c194eb.tar.bz2 tools-be98eb3cb215a2715e8c2d42eb476329b0c194eb.tar.xz tools-be98eb3cb215a2715e8c2d42eb476329b0c194eb.zip |
Rename mapcache into hercules.
Diffstat (limited to 'hercules/templates/example.tmx')
-rw-r--r-- | hercules/templates/example.tmx | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/hercules/templates/example.tmx b/hercules/templates/example.tmx new file mode 100644 index 0000000..1d14957 --- /dev/null +++ b/hercules/templates/example.tmx @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE map SYSTEM "http://mapeditor.org/dtd/1.0/map.dtd"> +<map version="1.0" orientation="orthogonal" width="10" height="10" tilewidth="32" tileheight="32"> + <tileset firstgid="1" name="tiles" tilewidth="32" tileheight="32"> + <image source="tileset.png" width="64" height="32"/> + </tileset> + <tileset firstgid="3" name="Collision" tilewidth="32" tileheight="32"> + <image source="collision.png" width="64" height="32"/> + </tileset> + <layer name="ground" width="10" height="10"> + <data encoding="csv"> +1,2,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0 +</data> + </layer> + <layer name="Collision" width="10" height="10"> + <data encoding="csv"> +4,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0 +</data> + </layer> +</map> |