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.
 
 
 

9 lines
255 B

extends Control
onready var networking = preload("res://scripts/networking.gd").new()
func _ready():
add_child(networking)
get_node("Server").connect("pressed", networking, server_init)
get_node("Client").connect("pressed", networking, client_init)