Difference between revisions of "Setup and map example"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "=Create a New Class= Create a new class in your project. Copy the code from this document: Square.Tiled Class")
 
Line 3: Line 3:
  
 
Copy the code from this document: [[Square.Tiled Class]]
 
Copy the code from this document: [[Square.Tiled Class]]
 +
 +
=Add Using Refereneces=
 +
You will need to add references to the following:
 +
 +
<syntaxhighlight lang=csharp>
 +
using System.IO;
 +
using Squared.Tiled;
 +
</syntaxhiglight>

Revision as of 14:03, 25 September 2017

Create a New Class

Create a new class in your project.

Copy the code from this document: Square.Tiled Class

Add Using Refereneces

You will need to add references to the following:

<syntaxhighlight lang=csharp> using System.IO; using Squared.Tiled; </syntaxhiglight>