2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 07:47:42 +00:00

Initial PVS stubs

This commit is contained in:
Jack Andersen
2016-07-27 13:06:57 -10:00
parent 8b234fafb8
commit 79443d93d2
14 changed files with 284 additions and 13 deletions

View File

@@ -0,0 +1,25 @@
#include "CPVSVisOctree.hpp"
namespace urde
{
CPVSVisOctree::CPVSVisOctree(CInputStream& in)
{
}
u32 CPVSVisOctree::GetNumChildren(const unsigned char*) const
{
return 0;
}
u32 CPVSVisOctree::GetChildIndex(const unsigned char*, const zeus::CVector3f&) const
{
return 0;
}
u32 CPVSVisOctree::SetTestPoint(const zeus::CVector3f&) const
{
return 0;
}
}