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

extends OptionButton
const hero_names = [
"Wallriding mfer",
"WallMAKING mfer",
]
func _ready():
for hero_index in range(hero_names.size()):
add_item(hero_names[hero_index], hero_index)