Merge pull request #107717 from aaronfranke/abstract-annotation
GDScript: Replace `abstract` keyword with `@abstract` annotation
This commit is contained in:
commit
ebc36a7225
31 changed files with 179 additions and 197 deletions
|
|
@ -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 ➡
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue