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

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