6 lines
136 B
GDScript
6 lines
136 B
GDScript
|
# 如果没有继承任何类,则默认继承RefCounted
|
|||
|
extends RefCounted
|
|||
|
|
|||
|
func _to_string():
|
|||
|
print("This is C Reference Counted!")
|