示例#1
0
 public void Tick()
 {
     _snake.Move();
     if (_snake.CheckFood(_food))
     {
         NewFood();
     }
 }