GDScript: Replace abstract keyword with @abstract annotation

Co-authored-by: Danil Alexeev <dalexeev12@yandex.ru>
This commit is contained in:
Aaron Franke
2025-06-19 04:53:15 -07:00
parent 88b9932ce1
commit 1085200f51
31 changed files with 179 additions and 197 deletions
@@ -8,7 +8,7 @@ class B extends A:
class C extends CanvasItem:
pass
abstract class X:
@abstract class X:
pass
class Y extends X: