More resharper cleanup

This commit is contained in:
Regalis11
2015-06-07 18:03:08 +03:00
parent f786cd3016
commit 34b79c85d6
62 changed files with 99 additions and 195 deletions
+6 -3
View File
@@ -19,20 +19,23 @@ namespace Subsurface.Items.Components
float structureFixAmount, limbFixAmount;
[HasDefaultValue(100.0f, false)]
private float Range
public float Range
{
get { return ConvertUnits.ToDisplayUnits(range); }
set { range = ConvertUnits.ToSimUnits(value); }
}
[HasDefaultValue(1.0f, false)]
private float StructureFixAmount
public float StructureFixAmount
{
get { return structureFixAmount; }
set { structureFixAmount = value; }
}
[HasDefaultValue(1.0f, false)]
private float LimbFixAmount
public float LimbFixAmount
{
get { return limbFixAmount; }
set { limbFixAmount = value; }
}