typhoon/tempest/box/CAaBox.hpp

14 lines
190 B
C++
Raw Permalink Normal View History

2022-12-24 23:08:12 -06:00
#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