This commit is contained in:
Christian Semmler 2024-03-04 16:12:16 -05:00
parent 20890176a2
commit 6031516d8a
2 changed files with 2 additions and 3 deletions

View File

@ -11,7 +11,6 @@
class ViewLOD : public LODObject { class ViewLOD : public LODObject {
public: public:
ViewLOD(Tgl::Renderer* pRenderer) : m_meshGroup(NULL), m_unk0x08(3) {} ViewLOD(Tgl::Renderer* pRenderer) : m_meshGroup(NULL), m_unk0x08(3) {}
~ViewLOD() override; ~ViewLOD() override;
// FUNCTION: LEGO1 0x100a6f30 // FUNCTION: LEGO1 0x100a6f30

View File

@ -16,13 +16,13 @@ float ViewROI::IntrinsicImportance() const
} // for now } // for now
// FUNCTION: LEGO1 0x100a9ec0 // FUNCTION: LEGO1 0x100a9ec0
const Tgl::Group* ViewROI::GetGeometry() const Tgl::Group* ViewROI::GetGeometry()
{ {
return geometry; return geometry;
} }
// FUNCTION: LEGO1 0x100a9ed0 // FUNCTION: LEGO1 0x100a9ed0
Tgl::Group* ViewROI::GetGeometry() const Tgl::Group* ViewROI::GetGeometry() const
{ {
return geometry; return geometry;
} }