mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 12:14:44 +00:00
6 lines
84 B
GDScript3
6 lines
84 B
GDScript3
|
|
abstract class A:
|
||
|
|
abstract func test(x: int) -> void
|
||
|
|
|
||
|
|
class B extends A:
|
||
|
|
func ➡
|