tresinformal / drakkar

The tresinformal video game called 'Drakkar'
GNU General Public License v3.0
11 stars 4 forks source link

A `menu_button` can be called from its label #482

Closed TheoPannetier closed 2 years ago

TheoPannetier commented 2 years ago
  {
    // (482) Menu button can be called from its label
    menu m;
    std::string label = "about";
    menu_button mb_about = m.get_button(label);
    assert(mb_about.get_label() == label);
  }
TheoPannetier commented 2 years ago

Done !