<?xml version="1.0" encoding="UTF-8"?>
<tsf:tileSetFile xmlns:tsf="http://www.hexagonstar.com/2009/TileSetFile">
	
	<tileSet
		id="hexagon_tileset"
		tileWidth="72"
		tileHeight="72"
		tileGap="0"
		isTransparent="true"
		bgColor="0x00FF0000"
		imageFilePath="hexagon_tiles.png"
	>
		
		<meta>
			<name><![CDATA[Hexagon TileSet]]></name>
			<description><![CDATA[An example tileset with hexagonal tiles.]]></description>
			<author><![CDATA[Sascha Balkau]]></author>
			<keywords><![CDATA[]]></keywords>
			<date></date>
		</meta>
		
		<!-- Pool Properties are a collection of properties that can be used by     -->
		<!-- tiles and also in the tileset's global properties. This is like a pool -->
		<!-- to that any arbitrary tile property or global property has access to   -->
		<!-- and can reference the pool properties by their id.                     -->
		<propertyPool>
			<property id="0" name="description" defaultValue=""/>
			<property id="1" name="isSolid" defaultValue="false"/>
			<property id="2" name="isCollectable" defaultValue="false"/>
			<property id="5" name="isClimbable" defaultValue="false"/>
			<property id="6" name="scoreValue" defaultValue="0"/>
		</propertyPool>
		
		<!-- Global properties are properties that affect every tile of the tileSet -->
		<!--  These are applied to every tile in the TileSet automatically.         -->
		<globalProperties>
			<property id="0" value="A Hexagonal Tileset"/>
		</globalProperties>
		
		<tiles>
			<tile id="1">
				<properties>
					<property id="0" value="Empty Tile"/>
				</properties>
			</tile>
			<tile id="2">
				<properties>
					<property id="0" value="Bush 1"/>
				</properties>
			</tile>
			<tile id="3">
				<properties>
					<property id="0" value="Bush 2"/>
				</properties>
			</tile>
			<tile id="4">
				<properties>
					<property id="0" value="Bush 3"/>
				</properties>
			</tile>
			<tile id="5">
				<properties>
					<property id="0" value="Bush 4"/>
				</properties>
			</tile>
			<tile id="6">
				<properties>
					<property id="0" value="Bush 5"/>
				</properties>
			</tile>
		</tiles>
		
	</tileSet>
</tsf:tileSetFile>

