Watch
2
0
Fork
You've already forked raylib-cs
0

Remove unused ToString

This commit is contained in:
Rgebee 2022-01-26 21:30:34 +00:00
commit a27b7eb0b0

View file

@ -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}}}";
}
} }
} }