summaryrefslogtreecommitdiff
path: root/Runtime/Math/Rect.h
blob: 21a803ee106b1a53526a898ae01072a551024c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

namespace Internal
{
    struct Rect
    {
        Rect(float x=0, float y = 0, float w = 0, float h = 0)
        {
            this->x = x;
            this->y = y;
            this->width = w;
            this->height = h;
        }
        float x, y, width, height;
    };
}