10 lines
162 B
GDScript
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
|
|
|