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

Several CGameArea PostConstruct imps

This commit is contained in:
Jack Andersen
2016-08-06 14:20:02 -10:00
parent 204969965e
commit 73573c84ea
10 changed files with 534 additions and 81 deletions

View File

@@ -130,20 +130,6 @@ public:
const u16* GetTriangleEdgeIndices(u16 idx) const;
static std::unique_ptr<CAreaOctTree> MakeFromMemory(void* buf, unsigned int size);
void RecursiveMatchXray(std::vector<u32>& out, const zeus::CAABox& inner, const zeus::CAABox& outer)
{
if (outer.intersects(inner))
{
if (inner.inside(outer))
{
}
}
}
void MatchXray(std::vector<u32>& out, const zeus::CAABox&)
{
}
};
}