mirror of
https://github.com/godotengine/godot.git
synced 2025-10-29 20:51:14 +00:00
5 lines
84 B
GDScript
5 lines
84 B
GDScript
abstract class A:
|
|
abstract func test(x: int) -> void
|
|
|
|
class B extends A:
|
|
func ➡
|