2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 22:31:21 +00:00
metaforce/Runtime/Graphics/CPVSAreaSet.hpp
2016-08-06 14:20:02 -10:00

25 lines
353 B
C++

#ifndef __URDE_CPVSAREASET_HPP__
#define __URDE_CPVSAREASET_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CPVSAreaSet
{
public:
struct CPVSAreaHolder
{
CPVSAreaHolder(CInputStream& in);
};
private:
std::vector<CPVSAreaHolder> xunk;
public:
CPVSAreaSet(CInputStream& in);
};
}
#endif // __URDE_CPVSAREASET_HPP__