summaryrefslogtreecommitdiff
path: root/Runtime/Math/Rect.h
blob: 8e7dae6781998769c4739e3da690e33545082970 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

namespace Internal
{
    struct Rect
    {
        float x, y, width, height;
    };
}