Example #1
0
 /// <summary>
 /// Puts the given entity to the top of the display
 /// </summary>
 /// <param name="snakeHead">The game entity</param>
 public void UpdateSnakeHeadDrawPosition(GameEntity snakeHead)
 {
     _displayPane.AddChildAt(snakeHead, _displayPane.NumChildren - 1);
 }