This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2025-07-08 17:40:13 +02:00
|
|
|
class_name PlayerHandAssociation
|
|
|
|
|
extends Resource
|
|
|
|
|
|
|
|
|
|
@export var client_id: String
|
|
|
|
|
@export var player_hand: NodePath
|
|
|
|
|
|
|
|
|
|
func _init(
|
|
|
|
|
client_id: String,
|
|
|
|
|
player_hand: NodePath,
|
|
|
|
|
) -> void:
|
|
|
|
|
self.client_id = client_id
|
|
|
|
|
self.player_hand = player_hand
|