lol/include/backend/BoundingBox.hpp
2021-12-23 00:25:50 +01:00

15 lines
140 B
C++

#pragma once
struct Rect
{
float x, y;
float w, h;
};
struct BoundingBox
{
float x, y, z;
float w, h, d;
};
typedef BoundingBox BBox;