4 lines
85 B
GDScript
4 lines
85 B
GDScript
extends Node
|
|
|
|
func generate_random(a: int, b: int) -> int:
|
|
return randi_range(a, b)
|