use raygui
This commit is contained in:
parent
8d91216f24
commit
81463d9eb0
9 changed files with 4589 additions and 83 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue