use raygui

This commit is contained in:
Fabien Freling 2022-02-15 13:17:14 +01:00
parent 8d91216f24
commit 81463d9eb0
9 changed files with 4589 additions and 83 deletions

View file

@ -1,5 +1,7 @@
#include "bounding_box.h"
namespace freling {
int BoundingBox::width() const {
return right - left;
}
@ -16,3 +18,5 @@ bool BoundingBox::operator==(const BoundingBox& b) const {
return left == b.left and top == b.top and right == b.right and
bottom == b.bottom;
}
} // namespace freling