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.

11 lines
216 B

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