public Race(Game _game) { game = _game; }
public Car(Game _game, int _maxVelocity = 20) { game = _game; maxVelocity = _maxVelocity; }