typhoon/tempest/box/CAaBox.hpp
2022-12-24 23:08:12 -06:00

13 lines
190 B
C++

#ifndef TEMPEST_BOX_C_AABOX_HPP
#define TEMPEST_BOX_C_AABOX_HPP
#include "tempest/Vector.hpp"
class CAaBox {
public:
// Member variables
C3Vector b;
C3Vector t;
};
#endif