virtuals removed

virtuals removed and replaced with override where necessary, clang-tidy to the rescue.
This commit is contained in:
marauder2k7 2024-03-18 18:13:00 +00:00
parent 88a43f3137
commit efbe5e90f5
255 changed files with 2164 additions and 2164 deletions

View file

@ -51,15 +51,15 @@ public:
DECLARE_CATEGORY("UNLISTED");
// SimObject
static void initPersistFields();
bool onAdd();
void onRemove();
bool onAdd() override;
void onRemove() override;
// SceneObject
void onMount( SceneObject *obj, S32 node );
void onUnmount( SceneObject *obj, S32 node );
void onMount( SceneObject *obj, S32 node ) override;
void onUnmount( SceneObject *obj, S32 node ) override;
// ProcessObject
void processTick( const Move *move );
void processTick( const Move *move ) override;
///
void attach( const Point3F &start, const Point3F &direction, F32 maxDist );