feat(box): add CBoundingBox

This commit is contained in:
fallenoak 2022-12-24 23:06:22 -06:00
parent 28b22e3bbd
commit b01ad9e664
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#ifndef TEMPEST_BOX_C_BOUNDING_BOX_HPP
#define TEMPEST_BOX_C_BOUNDING_BOX_HPP
#include "tempest/Range.hpp"
class CBoundingBox {
public:
// Member variables
CRange x;
CRange y;
CRange z;
};
#endif