First working multiplayer implementation

This commit is contained in:
2025-01-23 20:24:42 +01:00
parent fe08da9d4c
commit 51842836ce
8 changed files with 129 additions and 64 deletions

View File

@ -0,0 +1,11 @@
extends Node
var players = {}
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass