mirror of
https://github.com/godotengine/godot.git
synced 2026-04-18 18:01:29 +00:00
11 lines
147 B
GDScript
11 lines
147 B
GDScript
class A extends InstancePlaceholder:
|
|
func _init():
|
|
pass
|
|
|
|
class B extends A:
|
|
pass
|
|
|
|
func test():
|
|
Time.new()
|
|
InstancePlaceholder.new()
|
|
B.new()
|