Codechange: Add missing override specifiers.

This commit is contained in:
Peter Nelson
2023-04-13 07:23:18 +01:00
committed by PeterN
parent a454773a73
commit 49dae08a3b
34 changed files with 123 additions and 123 deletions

View File

@@ -47,9 +47,9 @@ struct DisasterVehicle FINAL : public SpecializedVehicle<DisasterVehicle, VEH_DI
virtual ~DisasterVehicle() = default;
void UpdatePosition(int x, int y, int z);
void UpdateDeltaXY();
void UpdateDeltaXY() override;
void UpdateImage();
bool Tick();
bool Tick() override;
};
#endif /* DISASTER_VEHICLE_H */