9 lines
177 B
GDScript
9 lines
177 B
GDScript
class_name RepeatIterator extends Iterator
|
|
|
|
var value: Variant
|
|
|
|
func _init(value: Variant) -> void:
|
|
self.value = value
|
|
|
|
func next() -> Option:
|
|
return Option.some(value)
|