void AddPart() { FBody b1 = new FBody(last); grid.Children.Add(b1); q1.Add(b1); last = b1; }
void StartNewGame() { h1 = new FHead(); //создаём голову h1.dir = "up"; grid.Children.Add(h1); Grid.SetColumn(h1, 10); Grid.SetRow(h1, 10); h1.Background = new SolidColorBrush(Color.FromRgb(0, 0, 0)); last = h1; AddPart(); //добавляем части тела AddPart(); AddPart(); FoodEaten(); timer.Start(); }
public FBody(FPart a) { prnt = a; }
public FBody() { prnt = null; }