Example #1
0
 //Timer Move Snake
 private void Timer1_Tick(object sender, EventArgs e)
 {
     _snake._Move(_law);
     _snake.eatfood(ref _food);
 }