mirror of https://github.com/AxioDL/metaforce.git
23 lines
336 B
C++
23 lines
336 B
C++
|
#ifndef __URDE_CPVSAREASET_HPP__
|
||
|
#define __URDE_CPVSAREASET_HPP__
|
||
|
|
||
|
#include "RetroTypes.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CPVSAreaSet
|
||
|
{
|
||
|
struct CPVSAreaHolder
|
||
|
{
|
||
|
CPVSAreaHolder(CInputStream& in);
|
||
|
};
|
||
|
std::vector<CPVSAreaHolder> xunk;
|
||
|
public:
|
||
|
CPVSAreaSet(CInputStream& in);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CPVSAREASET_HPP__
|