Hi,
I am working on developing a simple console game in Visual Basic in which the "level" is drawn out after being read from a file.
So far, I'm using
Console.ReadKey()
to check for the arrow keys and to therefore move the position of the piece on the console.
The problem is that the only way I know to do this is to redraw the "level" every time that the piece moves - which is relatively slow.
Is there any better way to achieve this?