8 lines
103 B
GDScript3
8 lines
103 B
GDScript3
|
func wait() -> void:
|
||
|
pass
|
||
|
|
||
|
func test():
|
||
|
@warning_ignore(redundant_await)
|
||
|
await wait()
|
||
|
print("end")
|