CAreaOctTree: Add names to parameters in prototypes

Allows IDEs to perform better inspections at call sites.
This commit is contained in:
Lioncash 2020-03-25 00:45:30 -04:00
parent e8f0d29a3b
commit 855fc0ced9
1 changed files with 6 additions and 6 deletions

View File

@ -42,17 +42,17 @@ public:
const CAreaOctTree& x1c_owner;
ETreeType x20_nodeType;
bool LineTestInternal(const zeus::CLine&, const CMaterialFilter&, float, float, float,
const zeus::CVector3f&) const;
void LineTestExInternal(const zeus::CLine&, const CMaterialFilter&, SRayResult&, float, float, float,
const zeus::CVector3f&) const;
bool LineTestInternal(const zeus::CLine& line, const CMaterialFilter& filter, float lT, float hT, float maxT,
const zeus::CVector3f& vec) const;
void LineTestExInternal(const zeus::CLine& line, const CMaterialFilter& filter, SRayResult& res, float lT, float hT,
float maxT, const zeus::CVector3f& dirRecip) const;
public:
Node(const void* ptr, const zeus::CAABox& aabb, const CAreaOctTree& owner, ETreeType type)
: x0_aabb(aabb), x18_ptr(reinterpret_cast<const u8*>(ptr)), x1c_owner(owner), x20_nodeType(type) {}
bool LineTest(const zeus::CLine&, const CMaterialFilter&, float) const;
void LineTestEx(const zeus::CLine&, const CMaterialFilter&, SRayResult&, float) const;
bool LineTest(const zeus::CLine& line, const CMaterialFilter& filter, float length) const;
void LineTestEx(const zeus::CLine& line, const CMaterialFilter& filter, SRayResult& res, float length) const;
const CAreaOctTree& GetOwner() const { return x1c_owner; }