mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 08:31:21 +00:00
5 lines
86 B
GDScript
5 lines
86 B
GDScript
@abstract class A:
|
|
@abstract func test(x: int) -> void
|
|
|
|
class B extends A:
|
|
func ➡
|