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.

12 lines
199 B

  1. extends OptionButton
  2. const hero_names = [
  3. "INDUSTRIA",
  4. "IRA",
  5. "AVARITIA",
  6. "CARITAS"
  7. ]
  8. func _ready():
  9. for hero_index in range(hero_names.size()):
  10. add_item(hero_names[hero_index], hero_index)