Example #1
0
        public Comms Clone()
        {
            Comms clone = (Comms)this.MemberwiseClone();

            return(clone);
        }
Example #2
0
 public bool Equals(Comms other)
 {
     return(commRadius == other?.commRadius &&
            voiceChatEnabled == other?.voiceChatEnabled);
 }