public bool Equals(WaymarkPreset other)
 {
     return(A.Equals(other.A) &&
            B.Equals(other.B) &&
            C.Equals(other.C) &&
            D.Equals(other.D) &&
            One.Equals(other.One) &&
            Two.Equals(other.Two) &&
            Three.Equals(other.Three) &&
            Four.Equals(other.Four) &&
            MapID == other.MapID);
 }