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-15 14:42:06 +02:00
|
|
|
class_name Play
|
|
|
|
|
extends Resource
|
|
|
|
|
|
|
|
|
|
## Card - player association
|
|
|
|
|
|
|
|
|
|
@export var client_id: String
|
|
|
|
|
@export var card_id: int
|
|
|
|
|
|
|
|
|
|
func _init(
|
|
|
|
|
client_id: String,
|
|
|
|
|
card_id: int,
|
|
|
|
|
) -> void:
|
|
|
|
|
self.client_id = client_id
|
|
|
|
|
self.card_id = card_id
|