Guys how do you create the snake game in c# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Guys how do you create the snake game in c#

app

9th Sep 2017, 7:34 PM
Ndumiso Percy Dlamini
Ndumiso  Percy Dlamini - avatar
4 Answers
+ 11
Console.Write(🐍);
9th Sep 2017, 8:16 PM
Manual
Manual - avatar
+ 7
Use this as well Game programming resources https://www.sololearn.com/discuss/625747/?ref=app
9th Sep 2017, 11:46 PM
Manual
Manual - avatar
+ 6
a snake in most snake game is just an array of positions(x, y) and each element transitions back words as the snake moves then each is drawn block by block. Adding to the snake would be pushing to the array or list with the values equal to the furthest back of the snake and as you continue moving they will get pushed into place. Definitely a good game to make to get a good understanding of manipulating arrays.
9th Sep 2017, 9:04 PM
Jordan Chapman
Jordan Chapman - avatar
+ 1
thanks thought Console.WriteLine🐍
9th Sep 2017, 9:58 PM
Ndumiso Percy Dlamini
Ndumiso  Percy Dlamini - avatar