Vendor gdUnit4 for Godot 4 client testing (D-030). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
182 B
GDScript
14 lines
182 B
GDScript
class_name RPCClientConnect
|
|
extends RPC
|
|
|
|
var _client_id: int
|
|
|
|
|
|
func with_id(id: int) -> RPCClientConnect:
|
|
_client_id = id
|
|
return self
|
|
|
|
|
|
func client_id() -> int:
|
|
return _client_id
|