static void Main(string[] args) { Human warrior = new Warrior("Артем", 100, 5, 10, 1); Human archer = new Archer("Миша", 100, 5, 10, 1); warrior.Print(); archer.Print(); warrior.Attack(archer); archer.Attack(warrior); warrior.Print(); archer.Print(); warrior.MoveBack(); archer.MoveForward(); warrior.Idle(); archer.Idle(); warrior.Print(); archer.Print(); }