mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-08-09 21:49:17 +00:00
CPasteNodesCommand: Make use of override where applicable
This commit is contained in:
parent
c9fbc0f727
commit
51ba13f988
@ -19,11 +19,12 @@ class CPasteNodesCommand : public IUndoCommand
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
CPasteNodesCommand(CWorldEditor *pEditor, CScriptLayer *pLayer, CVector3f PastePoint);
|
CPasteNodesCommand(CWorldEditor *pEditor, CScriptLayer *pLayer, CVector3f PastePoint);
|
||||||
~CPasteNodesCommand();
|
~CPasteNodesCommand() override;
|
||||||
void undo();
|
|
||||||
void redo();
|
|
||||||
|
|
||||||
bool AffectsCleanState() const { return true; }
|
void undo() override;
|
||||||
|
void redo() override;
|
||||||
|
|
||||||
|
bool AffectsCleanState() const override { return true; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CPASTENODESCOMMAND
|
#endif // CPASTENODESCOMMAND
|
||||||
|
Loading…
x
Reference in New Issue
Block a user