Can anyone help me with this please, I did something similar last year using C#:
static int[,] HideCompSea = new int[5, 5]
for (Row = 0; Row \< 5; Row++)
{
for (Col = 0; Col \< 5; Col++)
{
Console.Write("{0,-3}",GetShipChar(Sea[Col, Row]));
}
Console.WriteLine();
}
The main idea of this is for a level select screen, I need 25 rectangles which I can click to trigger events, so I need to be able to define them in the table - has anyone done anything similar to this? [import]uid: 68741 topic_id: 14287 reply_id: 314287[/import]