You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Merge pull request #107717 from aaronfranke/abstract-annotation
GDScript: Replace `abstract` keyword with `@abstract` annotation
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