General: Add missing override specifiers where applicable

This commit is contained in:
Lioncash
2020-06-22 02:15:41 -04:00
parent 46926ef4bf
commit 4b3af988ad
19 changed files with 29 additions and 29 deletions

View File

@@ -9,7 +9,7 @@ class CRootNode : public CSceneNode
public:
explicit CRootNode(CScene *pScene, uint32 NodeID, CSceneNode *pParent = nullptr)
: CSceneNode(pScene, NodeID, pParent) {}
~CRootNode() = default;
~CRootNode() override = default;
ENodeType NodeType() override
{