DrawText's first argument needs to be a const(char)*
but i tried using to! for that and have failed :(
yVel = to!(string)(player.vel.y);
DrawText(yVel, player.pos.x, player.pos.y - 40, 20, RAYWHITE);
How to properly convert from float to const(char)*
?