lol/include/backend/BoundingBox.hpp

15 lines
140 B
C++
Raw Normal View History

2021-12-22 23:25:50 +00:00
#pragma once
struct Rect
{
float x, y;
float w, h;
};
struct BoundingBox
{
float x, y, z;
float w, h, d;
};
typedef BoundingBox BBox;