mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
GDScript: Replace abstract keyword with @abstract annotation
Co-authored-by: Danil Alexeev <dalexeev12@yandex.ru>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
abstract class A:
|
||||
abstract func test(x: int) -> void
|
||||
@abstract class A:
|
||||
@abstract func test(x: int) -> void
|
||||
|
||||
class B extends A:
|
||||
func ➡
|
||||
|
||||
Reference in New Issue
Block a user