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

@ -2,6 +2,8 @@
#include <cstdint>
namespace freling {
struct BoundingBox {
uint32_t left;
uint32_t top;
@ -14,3 +16,5 @@ struct BoundingBox {
bool operator==(const BoundingBox& b) const;
};
} // namespace freling