1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-11-08 23:16:39 +00:00

Remove unused virtual specifier

This commit is contained in:
elsid 2024-09-19 00:17:44 +02:00
parent 8ba4ff9946
commit 320d376b95
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -47,12 +47,12 @@ namespace MWRender
protected: protected:
osg::Group* getBoneByName(std::string_view boneName) const; osg::Group* getBoneByName(std::string_view boneName) const;
virtual void updateHolsteredWeapon(bool showHolsteredWeapons); void updateHolsteredWeapon(bool showHolsteredWeapons);
virtual void updateHolsteredShield(bool showCarriedLeft); void updateHolsteredShield(bool showCarriedLeft);
virtual void updateQuiver(); void updateQuiver();
std::string getShieldMesh(const MWWorld::ConstPtr& shield, bool female) const; std::string getShieldMesh(const MWWorld::ConstPtr& shield, bool female) const;
virtual std::string getSheathedShieldMesh(const MWWorld::ConstPtr& shield) const; virtual std::string getSheathedShieldMesh(const MWWorld::ConstPtr& shield) const;
virtual std::string_view getHolsteredWeaponBoneName(const MWWorld::ConstPtr& weapon); std::string_view getHolsteredWeaponBoneName(const MWWorld::ConstPtr& weapon);
PartHolderPtr attachMesh( PartHolderPtr attachMesh(
VFS::Path::NormalizedView model, std::string_view bonename, const osg::Vec4f* glowColor = nullptr); VFS::Path::NormalizedView model, std::string_view bonename, const osg::Vec4f* glowColor = nullptr);