Settings constructor

Settings({
  1. bool bgm = false,
  2. bool sfx = false,
})

Implementation

Settings({bool bgm = false, bool sfx = false}) {
  _bgm = bgm;
  _sfx = sfx;
}