Basic TCP connections

This commit is contained in:
Tony Bark 2025-02-18 14:29:18 -05:00
parent cd3ef1c3da
commit 60d28a2879
20 changed files with 968 additions and 30 deletions

15
client/source/GameKit.gd Normal file
View file

@ -0,0 +1,15 @@
extends Node
const NOT_IMPLEMENTED = "This feature is not implemented"
func is_game_paused(is_paused):
if is_paused == true:
get_tree().paused = true
else:
get_tree().paused = false
func switch_scenes(is_mode):
if is_mode == "title":
get_tree().change_scene_to_file("res://scenes/TitleScn.tscn")
elif is_mode == "game":
get_tree().change_scene_to_file("res://scenes/GameScn.tscn")