Remove unused ToString
This commit is contained in:
parent
1864e6c137
commit
a27b7eb0b0
1 changed files with 0 additions and 10 deletions
|
|
@ -70,11 +70,6 @@ namespace Raylib_cs
|
||||||
this.position = position;
|
this.position = position;
|
||||||
this.direction = direction;
|
this.direction = direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override string ToString()
|
|
||||||
{
|
|
||||||
return $"{{Position:{position} Direction:{direction}}}";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -102,10 +97,5 @@ namespace Raylib_cs
|
||||||
/// Surface normal of hit
|
/// Surface normal of hit
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Vector3 normal;
|
public Vector3 normal;
|
||||||
|
|
||||||
public override string ToString()
|
|
||||||
{
|
|
||||||
return $"{{Hit:{hit} Distance:{distance} Point:{point} Normal:{normal}}}";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue