Exemple #1
0
        public bool Equals(Cell cell)
        {
            if (cell == null)
            {
                return(false);
            }

            return(GlobalId.Equals(cell.GlobalId));
        }
 public bool Equals(IPlayer other)
 {
     return(GlobalId.Equals(other?.GlobalId));
 }