A team game with an emphasis on movement (with no shooting), inspired by Overwatch and Zineth
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
193 B

  1. extends OptionButton
  2. const hero_names = [
  3. "Wallriding mfer",
  4. "WallMAKING mfer",
  5. ]
  6. func _ready():
  7. for hero_index in range(hero_names.size()):
  8. add_item(hero_names[hero_index], hero_index)