mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 17:07:41 +00:00
Various windows compile fixes
This commit is contained in:
@@ -9,18 +9,22 @@ CFrustumPlanes::CFrustumPlanes(const zeus::CTransform& cameraXf, float, float, f
|
||||
|
||||
bool CFrustumPlanes::PointInFrustumPlanes(const zeus::CVector3f& point) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CFrustumPlanes::SphereInFrustumPlanes(const zeus::CSphere& sphere) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CFrustumPlanes::BoxInFrustumPlanes(const zeus::CAABox& box) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CFrustumPlanes::BoxInFrustumPlanes(const rstl::optional_object<zeus::CAABox>& box) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user