started adding player hand creation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user