Hello,
I'm writting a program to create a "Snake Game" in C#.
What I want to do, is to constantly call the FOrm Paint Event Method to draw the snake and fruits in the form.
I added a Timer that will call the Paint Event Method every 100ms.
The thing is that I don't know how to do this.
I don't know if it is the best approach but is my best idea. The paint event method, has code to add nodes to the linked list that represents the snake and draw them in the screen.
Thanks in advance.