aboutsummaryrefslogtreecommitdiff
path: root/src/common/shapes.hpp
blob: b556b2b1c6efc8e4538f43235a112575de5c646c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once


struct Rectangle {
    float x0;
    float y0;
    float x1;
    float y1;
};

struct Circle {
    float x;
    float y;
    float r;
};