mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
14 lines
219 B
C++
14 lines
219 B
C++
#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
|