gdnative_python/tests/work_with_gdscript/pynode_with_gdparent.py

10 lines
157 B
Python

from godot import exposed, ResourceLoader
GDNode = ResourceLoader.load("res://gdnode.gd", "", False)
@exposed
class PyNodeWithGDParent(GDNode):
pass