Push project up

This commit is contained in:
2026-08-23 12:03:58 -05:00
parent 5a3b3a9563
commit e8378cb6fb
34 changed files with 1001 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
class_name MultiplayerData extends Node
var is_multiplayer_active: bool = false
func _init() -> void:
Globals.multiplayer_data = self
@rpc("authority", "call_local", "reliable")
func set_multiplayer_active() -> void:
is_multiplayer_active = true
@rpc("authority", "call_local", "reliable")
func set_active_player_id(_id: int) -> void:
pass