0
Guys how do you create the snake game in c#
app
5 Réponses
+ 11
Console.Write(🐍);
+ 7
Use this as well
Game programming resources
https://www.sololearn.com/discuss/625747/?ref=app
+ 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.
+ 1
thanks thought Console.WriteLine🐍