Files
hank/hank-godot/scripts/haxe_ds_GenericStack_GenericCell.gd
Nat Quayle Nelson 8caad092be
Some checks failed
/ test (push) Failing after 8s
Generate GDScript
2025-10-30 19:19:36 -05:00

10 lines
162 B
GDScript

class_name haxe_ds_GenericCell
var elt
var next: haxe_ds_GenericCell
func _init(elt2, next2: haxe_ds_GenericCell) -> void:
self.elt = elt2
self.next = next2