summaryrefslogtreecommitdiff
path: root/hercules/templates/template.tmx
blob: 40d8d14e05587971959c812b28ae848f64b60d33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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="{0}" height="{1}" tilewidth="32" tileheight="32">
 <tileset firstgid="1" name="tiles" tilewidth="32" tileheight="32">
  <image source="../graphics/tilesets/tileset.png" width="64" height="32"/>
 </tileset>
 <tileset firstgid="3" name="Collision" tilewidth="32" tileheight="32">
  <image source="../graphics/tilesets/collision.png" width="64" height="32"/>
 </tileset>
 <layer name="ground" width="{0}" height="{1}">
  <data encoding="csv">
{2}
</data>
 </layer>
 <layer name="Fringe" width="{0}" height="{1}">
  <data encoding="csv">
{4}
</data>
 </layer>
 <layer name="Collision" width="{0}" height="{1}">
  <data encoding="csv">
{3}
</data>
 </layer>
</map>