OK、私は経験豊富な C++ プログラマーではありませんが、次のコンストラクターの引数にあるアンダースコアの意味は何だろうと思っていました。
class floatCoords
{
public:
floatCoords(float _x, float _y, float _width, float _height)
: x(_x), y(_y), width(_width), height(_height)
{
}
float x, y, width, height;
...