public bool Equals(ref MyGraphicsSettings1 other)
 {
     return(HardwareCursor == other.HardwareCursor &&
            FieldOfView == other.FieldOfView &&
            EnableDamageEffects == other.EnableDamageEffects &&
            Render.Equals(ref other.Render));
 }
Exemplo n.º 2
0
 public bool Equals(ref MyGraphicsSettings other)
 {
     return(HardwareCursor == other.HardwareCursor &&
            FieldOfView == other.FieldOfView &&
            EnableDamageEffects == other.EnableDamageEffects &&
            Render.Equals(ref other.Render) &&
            GraphicsRenderer == other.GraphicsRenderer &&
            VegetationDrawDistance == other.VegetationDrawDistance);
 }