Code: Select all
static public void boardWrite()
{
Console.Clear();
for (int y = 0; y < 17; y++)
{
int i = 0;
for (int x = 0; x < 80; x++)
{
i++;
if (i < 80)
{
Console.Write(tiles[x, y]);
}
else
{
Console.Write("\n");
i = 0;
}
}
}
if it helps here is a link to where you can download the project, as of now the only thing that works is collision detection and movement(use WASD to move):
http://www.mediafire.com/?g4queiudjsrvaab