mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
13 lines
190 B
C++
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
|