コンテンツにスキップ

Rect

  • x, y, width, height の 4 つのメンバ変数で長方形を表すクラス Rect と、その便利なメンバ関数を実装する。
Rect.hpp
#pragma once
#include "Common.hpp"

namespace seccamp
{
    struct Rect
    {


        

    };
}