<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/tiledforcsharp/home/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/tiledforcsharp/home/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 28 Sep 2011 05:51:58 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/tiledforcsharp/home/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by shiroto</title><link>https://sourceforge.net/p/tiledforcsharp/home/Home/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -1,4 +1,4 @@
-Have questions, found bugs, want to give feedback, want features? Tell me![[project_admins]]
+Have questions, found bugs, want to give feedback, want features? Tell me! [[project_admins]]
 [[download_button]]
 
 How to
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shiroto</dc:creator><pubDate>Wed, 28 Sep 2011 05:51:58 -0000</pubDate><guid>https://sourceforge.net65968801a3e2bde8702a4a623404f3e9af3e3147</guid></item><item><title>WikiPage Home modified by shiroto</title><link>https://sourceforge.net/p/tiledforcsharp/home/Home/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -1,4 +1,4 @@
-[[project_admins]]
+Have questions, found bugs, want to give feedback, want features? Tell me![[project_admins]]
 [[download_button]]
 
 How to
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shiroto</dc:creator><pubDate>Wed, 28 Sep 2011 05:51:46 -0000</pubDate><guid>https://sourceforge.net7227dc5c3b9ecfa4dc99bcb35b14c96350c56df6</guid></item><item><title>WikiPage Home modified by shiroto</title><link>https://sourceforge.net/p/tiledforcsharp/home/Home/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,29 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/tiledforcsharp/home/markdown_syntax/) syntax.
+[[project_admins]]
+[[download_button]]
+
+How to
+------
+1.) Download Tiled.rar
+2.) Copy the dlls to somewhere you can use them, or take a look at the Visual Studio project.
+3.) Add a reference to Tiled.dll to your game, and a reference to TMXProcessorLib.dll to your gamecontent.
+4.) Create a map using [Tiled](http://www.mapeditor.org/).
+5.) Add the .tmx-file and tilesets to your gamecontent.
+6.) Choose TMX Importer and TMX Processor for .tmx-files.
+7.) Write your LoadContent-method:
+protected override void LoadContent()
+{
+    spriteBatch = new SpriteBatch(GraphicsDevice);
+    device = graphics.GraphicsDevice;
+    map = Content.Load&lt;TiledMap&gt;("map"); // name of the .tmx-file without ".tmx"
+    TilesetManager.LoadTextures(Content);
+}
+8.) Let it be drawn:
+protected override void Draw(GameTime gameTime)
+{
+    GraphicsDevice.Clear(Color.Blue);
+    spriteBatch.Begin();
+    spriteBatch.Draw(map, new Vector2());
+    spriteBatch.End();
+    base.Draw(gameTime);
+}
+9.) Start!
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shiroto</dc:creator><pubDate>Tue, 27 Sep 2011 13:09:49 -0000</pubDate><guid>https://sourceforge.net92bd40bb05137c267908814a7378ffeecbb6b6f4</guid></item><item><title>WikiPage Home modified by shiroto</title><link>https://sourceforge.net/p/tiledforcsharp/home/Home/</link><description>Welcome to your wiki!

This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].

The wiki uses [Markdown](/p/tiledforcsharp/home/markdown_syntax/) syntax.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">shiroto</dc:creator><pubDate>Tue, 27 Sep 2011 09:49:05 -0000</pubDate><guid>https://sourceforge.netd35f05d8b5f29f568681a709d8fce82a0fcdfa1a</guid></item></channel></rss>