Vendor gdUnit4 for Godot 4 client testing (D-030). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
215 B
GDScript
14 lines
215 B
GDScript
class_name ClassWithParameterGetterSetter
|
|
extends RefCounted
|
|
|
|
|
|
var _session_count: int = 42:
|
|
get:
|
|
return _session_count
|
|
set(value):
|
|
_session_count = value
|
|
|
|
|
|
func session_count() -> int:
|
|
return _session_count
|