mirror of
https://github.com/thug1src/thug.git
synced 2024-12-02 12:56:45 +00:00
15 lines
174 B
C
15 lines
174 B
C
|
#ifndef _BBOX_H_
|
||
|
#define _BBOX_H_
|
||
|
|
||
|
#include <dolphin.h>
|
||
|
#include "p_matrix.h"
|
||
|
|
||
|
class NsBBox
|
||
|
{
|
||
|
public:
|
||
|
NsVector m_min;
|
||
|
NsVector m_max;
|
||
|
};
|
||
|
|
||
|
#endif // _BBOX_H_
|