Revert override removal

This commit is contained in:
2023-02-06 12:01:01 -05:00
parent d43dc0ead2
commit b6ddfcfc35
148 changed files with 1030 additions and 1023 deletions

View File

@@ -12,11 +12,11 @@ public:
CCollidableSphere(const CSphere& sphere, const CMaterialList& material)
: CCollisionPrimitive(material), x10_sphere(sphere) {}
uint GetTableIndex() const;
CAABox CalculateAABox(const CTransform4f&) const;
CAABox CalculateLocalAABox() const;
FourCC GetPrimType() const;
~CCollidableSphere() {}
uint GetTableIndex() const override;
CAABox CalculateAABox(const CTransform4f&) const override;
CAABox CalculateLocalAABox() const override;
FourCC GetPrimType() const override;
~CCollidableSphere() override {}
CRayCastResult CastRayInternal(const CInternalRayCastStructure&) const;
private: