Beispiel #1
0
        public bool ActorFight(Cell cell)
        {
            var actorInCell = cell.ActorInCell();

            return(actorInCell switch
            {
                null => false,
                _ => HandleActors(actorInCell, cell),
            });