mirror of https://github.com/PrimeDecomp/prime.git
12 lines
200 B
C++
12 lines
200 B
C++
|
#ifndef _CAREABSPTREE
|
||
|
#define _CAREABSPTREE
|
||
|
|
||
|
class CInputStream;
|
||
|
class CTransform4f;
|
||
|
class CAreaBspTree {
|
||
|
public:
|
||
|
CAreaBspTree(CInputStream& in, const CTransform4f& xf);
|
||
|
};
|
||
|
|
||
|
#endif // _CAREABSPTREE
|