All components must call super

This commit is contained in:
Lukas Klingsbo
2020-10-07 09:20:28 +02:00
parent 7a29d19cc5
commit f48bf4d654
9 changed files with 12 additions and 10 deletions

View File

@ -590,6 +590,7 @@ class TrafficLightComponent extends Component {
@override
void update(double dt) {
super.update(dt);
colorChangeTimer.update(dt);
}