diff --git a/tempest/Box.hpp b/tempest/Box.hpp new file mode 100644 index 0000000..1d859e9 --- /dev/null +++ b/tempest/Box.hpp @@ -0,0 +1,6 @@ +#ifndef TEMPEST_BOX_HPP +#define TEMPEST_BOX_HPP + +#include "tempest/box/CBoundingBox.hpp" + +#endif diff --git a/tempest/box/CBoundingBox.hpp b/tempest/box/CBoundingBox.hpp new file mode 100644 index 0000000..9442cb0 --- /dev/null +++ b/tempest/box/CBoundingBox.hpp @@ -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